From a4c76fe11eae00b056900d35cd1d37daa873ce33 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sat, 23 Aug 2008 08:20:00 +0000 Subject: [PATCH] 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 --- src/common/combocmn.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp index 10327a4fbf..64ca4d1173 100644 --- a/src/common/combocmn.cpp +++ b/src/common/combocmn.cpp @@ -1138,6 +1138,8 @@ bool wxComboCtrlBase::Enable(bool enable) m_btn->Enable(enable); if ( m_text ) m_text->Enable(enable); + + Refresh(); return true; }