]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied patch [ 1428990 ] wxUniv: patch for toolbar button remain in pressed status
authorJulian Smart <julian@anthemion.co.uk>
Sat, 11 Mar 2006 14:40:41 +0000 (14:40 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 11 Mar 2006 14:40:41 +0000 (14:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/univ/toolbar.cpp

index bb134fe21fb9b138209144ecbf11e98e54833c98..a708a7cb743da6209cab52b352f88d5bb90879b6 100644 (file)
@@ -649,6 +649,23 @@ bool wxToolBar::PerformAction(const wxControlAction& action,
         PerformAction( wxACTION_BUTTON_RELEASE, numArg );
 
         PerformAction( wxACTION_BUTTON_CLICK, numArg );
+                        
+        // Write by Danny Raynor to change state again.                
+        if( tool->IsToggled() )
+        {
+            // Change toggle state to false
+            tool->Toggle(false);
+        }
+  
+        // Check button still pressed or not
+        if( tool->IsInverted() )
+        {        
+            PerformAction( wxACTION_TOOLBAR_RELEASE, numArg );      
+        }
+    
+        // Set mouse leave toolbar button range (If still in the range,
+        // toolbar button would get focus again
+        PerformAction( wxACTION_TOOLBAR_LEAVE, numArg );
     }
     else if ( action == wxACTION_TOOLBAR_PRESS )
     {