]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/cocoa/nonownedwnd.mm
Fix needed to allow shaped windows, and other windows without a title bar, to get...
[wxWidgets.git] / 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