]> git.saurik.com Git - wxWidgets.git/commitdiff
removed unnecessary (the problem is due to a bug elsewhere) test for vertical scroll...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 16 Apr 2006 01:10:28 +0000 (01:10 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 16 Apr 2006 01:10:28 +0000 (01:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38750 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listctrl.cpp

index a461b1dca02fcb7ca2a32608c06634fc1bbd2221..6e1707802a2176f93e1fbcc912d05fc4885019b7 100644 (file)
@@ -4612,13 +4612,6 @@ void wxListMainWindow::SortItems( wxListCtrlCompare fn, long data )
 
 void wxListMainWindow::OnScroll(wxScrollWinEvent& event)
 {
 
 void wxListMainWindow::OnScroll(wxScrollWinEvent& event)
 {
-    int cw, ch, vw, vh;
-    GetVirtualSize(&vw, &vh);
-    GetClientSize(&cw, &ch);
-
-    if ( event.GetOrientation() == wxVERTICAL && ch >= vh )
-        return;
-
     // update our idea of which lines are shown when we redraw the window the
     // next time
     ResetVisibleLinesRange();
     // update our idea of which lines are shown when we redraw the window the
     // next time
     ResetVisibleLinesRange();