From: Vadim Zeitlin Date: Tue, 10 Jul 2001 12:50:40 +0000 (+0000) Subject: argh, another for GetVisibleLinesRange X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bcc0da5ce3f0b78c1592c16dc3e2334fa87d72cb argh, another for GetVisibleLinesRange git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10939 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 8c9f843909..6747342856 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -4034,7 +4034,7 @@ void wxListMainWindow::GetVisibleLinesRange(size_t *from, size_t *to) // this may happen if SetScrollbars() hadn't been called yet if ( m_lineFrom >= count ) - m_lineFrom = count; + m_lineFrom = count - 1; // we redraw one extra line but this is needed to make the redrawing // logic work when there is a fractional number of lines on screen