]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix needed to allow shaped windows, and other windows without a title bar, to get...
authorKevin Ollivier <kevino@theolliviers.com>
Sat, 28 Nov 2009 20:09:00 +0000 (20:09 +0000)
committerKevin Ollivier <kevino@theolliviers.com>
Sat, 28 Nov 2009 20:09:00 +0000 (20:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62741 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/nonownedwnd.mm

index fd0b0a3648eb3ae27c62a8c47492d0b83f50d60b..46803a291d3b48a96605eda27bf6997c7aa80d9f 100644 (file)
@@ -132,6 +132,14 @@ typedef void (*wxOSX_NoResponderHandlerPtr)(NSView* self, SEL _cmd, SEL selector
     }
 }
 
     }
 }
 
+// We need this for borderless windows, i.e. shaped windows or windows without  
+// a title bar. For more info, see:
+// http://lists.apple.com/archives/cocoa-dev/2008/May/msg02091.html
+- (BOOL)canBecomeKeyWindow
+{
+    return YES;
+}
+
 @end
 
 @interface wxNSPanel : NSPanel
 @end
 
 @interface wxNSPanel : NSPanel