projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
use buffered streams to reduce the number of TCP packets used per IPC command from...
[wxWidgets.git]
/
src
/
common
/
combocmn.cpp
diff --git
a/src/common/combocmn.cpp
b/src/common/combocmn.cpp
index 3d3bb90ad16acf0702b60ba5e5cfbcb3adf85d64..af78618a59a0e7fd81e0f16d7b5d8d9a5a50eea3 100644
(file)
--- 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);
m_btn->Enable(enable);
if ( m_text )
m_text->Enable(enable);
+
+ Refresh();
return true;
}
return true;
}