]> git.saurik.com Git - wxWidgets.git/commitdiff
make sure mouse moved events are always delivered, see #15008
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 3 Jun 2013 08:32:15 +0000 (08:32 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 3 Jun 2013 08:32:15 +0000 (08:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74091 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/cocoa/nonownedwnd.mm

index ac4bfd2e4a5eafdd74f9c7353ac6b3969ebccbad..6ae40522fefc0c3968f374772c1769b1d9fa66a0 100644 (file)
@@ -568,12 +568,12 @@ long style, long extraStyle, const wxString& WXUNUSED(name) )
 
     if ( style & wxFRAME_TOOL_WINDOW || ( style & wxPOPUP_WINDOW ) ||
             GetWXPeer()->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG )
-    {
         m_macWindow = [wxNSPanel alloc];
-    }
     else
         m_macWindow = [wxNSWindow alloc];
 
+    [m_macWindow setAcceptsMouseMovedEvents:YES];
+
     CGWindowLevel level = kCGNormalWindowLevel;
 
     if ( style & wxFRAME_TOOL_WINDOW )