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

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@55201 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-08-23 08:20:00 +00:00
parent 2e6e6e6641
commit a4c76fe11e

View File

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