wxComboCtrlBase::Enable() does not refresh the control #9900

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55200 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-08-23 08:19:42 +00:00
parent 917fe2f242
commit 4df230b81e

View File

@@ -1177,6 +1177,8 @@ bool wxComboCtrlBase::Enable(bool enable)
m_btn->Enable(enable);
if ( m_text )
m_text->Enable(enable);
Refresh();
return true;
}