]> git.saurik.com Git - wxWidgets.git/commitdiff
wxComboCtrlBase::Enable() does not refresh the control #9900
authorRobert Roebling <robert@roebling.de>
Sat, 23 Aug 2008 08:19:42 +0000 (08:19 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 23 Aug 2008 08:19:42 +0000 (08:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/combocmn.cpp

index 3d3bb90ad16acf0702b60ba5e5cfbcb3adf85d64..af78618a59a0e7fd81e0f16d7b5d8d9a5a50eea3 100644 (file)
@@ -1177,6 +1177,8 @@ bool wxComboCtrlBase::Enable(bool enable)
         m_btn->Enable(enable);
     if ( m_text )
         m_text->Enable(enable);
+        
+    Refresh();
 
     return true;
 }