]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed bug with showing unneeded scrollbar in the list control (at least under MSW)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 2 Jul 2005 22:16:12 +0000 (22:16 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 2 Jul 2005 22:16:12 +0000 (22:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listbkg.cpp

index e9b4baa656b2be7e9776b6785f6ecc725c34abb0..e3208c261119e26208228a21931c241f5aacf26a 100644 (file)
@@ -235,6 +235,12 @@ void wxListbook::OnSize(wxSizeEvent& event)
             break;
     }
 
+    // arrange the icons before calling SetClientSize(), otherwise it wouldn't
+    // account for the scrollbars the list control might need and, at least
+    // under MSW, we'd finish with an ugly looking list control with both
+    // vertical and horizontal scrollbar (with one of them being added because
+    // the other one is not accounted for in client size computations)
+    m_list->Arrange();
     m_list->Move(posList.x, posList.y);
     m_list->SetClientSize(sizeList.x, sizeList.y);
 
@@ -276,7 +282,7 @@ void wxListbook::OnSize(wxSizeEvent& event)
         wxWindow *page = m_pages[m_selection];
         wxCHECK_RET( page, _T("NULL page in wxListbook?") );
         page->SetSize(GetPageRect());
-        }
+    }
 }
 
 wxSize wxListbook::CalcSizeFromPage(const wxSize& sizePage) const