]> git.saurik.com Git - wxWidgets.git/commitdiff
only handling inContent CarbonEvents if we are the active window
authorStefan Csomor <csomor@advancedconcepts.ch>
Tue, 28 Jan 2003 16:45:31 +0000 (16:45 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Tue, 28 Jan 2003 16:45:31 +0000 (16:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/toplevel.cpp
src/mac/toplevel.cpp

index 4fed48c94330d28680adb807e60c50d774b538c5..90dd8057aba7380dfe7c5955794de6da65232285 100644 (file)
@@ -137,7 +137,8 @@ static pascal OSStatus MouseEventHandler( EventHandlerCallRef handler , EventRef
        
        WindowRef window ;
     short windowPart = ::FindWindow(point, &window);
-    if ( windowPart == inContent )
+
+    if ( IsWindowActive(window) && windowPart == inContent )
     {
                switch ( GetEventKind( event ) )
                {
index 4fed48c94330d28680adb807e60c50d774b538c5..90dd8057aba7380dfe7c5955794de6da65232285 100644 (file)
@@ -137,7 +137,8 @@ static pascal OSStatus MouseEventHandler( EventHandlerCallRef handler , EventRef
        
        WindowRef window ;
     short windowPart = ::FindWindow(point, &window);
-    if ( windowPart == inContent )
+
+    if ( IsWindowActive(window) && windowPart == inContent )
     {
                switch ( GetEventKind( event ) )
                {