Corrected filelist.txt a little - one gsocket.c is enough,
Corrected cursors - not yet perfect, Added some tests to scroll sample Made wxScrolledWindow::Scroll() call Refresh(), Change wxListCtrl to reflect the latter change (wxTreeCtrl will follow), Added activate event for wxMDIChildFrame Implemented wxSIMPLE_BORDER for wxWindow (no controls), Tried to correct positioning upon start-up - no way, Rewrote catching of scroll events - page-up, page-down, up and down work now. Don't know what TOP and BOTTOM are used for. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -468,12 +468,11 @@ void wxScrolledWindow::Scroll( int x_pos, int y_pos )
|
||||
SetScrollPos( wxVERTICAL, m_yScrollPosition, TRUE );
|
||||
}
|
||||
|
||||
// BAD, BAD, can cause event loops if called from OnPaint(). KB.
|
||||
// Refresh();
|
||||
|
||||
#ifdef __WXMSW__
|
||||
// Necessary?
|
||||
::UpdateWindow ((HWND) GetHWND());
|
||||
#else
|
||||
Refresh();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user