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