don't unfocus the world if cocoa view has gone fullscreen; the original window isn't really associated with the view while fullscreen

db4
Joe Groff 2009-05-14 17:37:14 -05:00
parent 7fdd018aec
commit b3039786c2
1 changed files with 4 additions and 1 deletions

View File

@ -391,7 +391,10 @@ CLASS: {
{ "windowDidResignKey:" "void" { "id" "SEL" "id" }
[
forget-rollover
2nip -> object -> contentView window unfocus-world
2nip -> object -> contentView
dup -> isInFullScreenMode zero?
[ window unfocus-world ]
[ drop ] if
]
}