X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a9092ede82057123a4fe4c5f758782a8c21b3728..3c6f86f5b7fd65b77beda6e68c27fed7e703baca:/src/generic/listbkg.cpp?ds=sidebyside diff --git a/src/generic/listbkg.cpp b/src/generic/listbkg.cpp index 3e8d09d7fb..6993bff676 100644 --- a/src/generic/listbkg.cpp +++ b/src/generic/listbkg.cpp @@ -45,7 +45,7 @@ const wxCoord MARGIN = 5; // ---------------------------------------------------------------------------- -// various wxWindows macros +// various wxWidgets macros // ---------------------------------------------------------------------------- IMPLEMENT_DYNAMIC_CLASS(wxListbook, wxControl) @@ -357,10 +357,12 @@ int wxListbook::SetSelection(size_t n) if ( (int)n != m_selection ) { - m_selection = n; + m_list->Select(n); + m_list->Focus(n); - m_list->Select(m_selection); - m_list->Focus(m_selection); + // change m_selection only now, otherwise OnListSelected() would ignore + // the selection change event + m_selection = n; } return selOld;