]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/listbkg.cpp
Committing in .
[wxWidgets.git] / src / generic / listbkg.cpp
index 3e8d09d7fb1aa5b9427894f15d553ea20268d285..6993bff6761317aebeaf8ac12125cf6b99e4fdd3 100644 (file)
@@ -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;