wxScrolledWindow::Scroll() no longer calls Refresh(). Adjusted listctrl to

this change.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2389 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Karsten Ballüder
1999-05-10 11:07:54 +00:00
parent 0abb488549
commit aab3e197ce
2 changed files with 6 additions and 5 deletions

View File

@@ -456,7 +456,8 @@ void wxScrolledWindow::Scroll( int x_pos, int y_pos )
SetScrollPos( wxVERTICAL, m_yScrollPosition, TRUE );
}
Refresh();
// BAD, BAD, can cause event loops if called from OnPaint(). (KB)
// Refresh();
#ifdef __WXMSW__
// Necessary?