diff --git a/docs/changes.txt b/docs/changes.txt index b1673292ec..c99be071c4 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -285,6 +285,7 @@ wxMSW: - Fix building samples with clang under MSYS (Maarten Bent, #23057). - Fix memory leak when allocating command line arguments (#23081). - Include wxrc.exe in 64-bit wxMSW MSVC dev archive too (Danny Scott, #23122). +- Don't disable wxComboBox after recreating it (Oleksandra Yushchenko, #23132). wxOSX: diff --git a/src/msw/combobox.cpp b/src/msw/combobox.cpp index 91db31427b..799d0acfc0 100644 --- a/src/msw/combobox.cpp +++ b/src/msw/combobox.cpp @@ -537,7 +537,7 @@ void wxComboBox::MSWRecreate() SetSelection(selection); // If disabled we'll have to disable it again after re-creating - if ( !IsEnabled() ) + if ( !IsThisEnabled() ) DoEnable(false); }