diff --git a/checkin_notes b/checkin_notes index 64a9cb5794..d6a301d553 100755 --- a/checkin_notes +++ b/checkin_notes @@ -27581,3 +27581,12 @@ David 21 April 2005 client_types.h cs_account.C cs_scheduler.C + +Rom 22 April 2005 + - Post an update request instead of forcing one right as the user is changing + tabs, this increases preceived performance since the tab switches over + and the update happens around the same time as ones eyeballs move to the + part of the screen where they are expecting to see a change. + + clientgui/ + MainFrame.cpp diff --git a/clientgui/MainFrame.cpp b/clientgui/MainFrame.cpp index 219057d9cb..7fa89607b4 100644 --- a/clientgui/MainFrame.cpp +++ b/clientgui/MainFrame.cpp @@ -1369,7 +1369,7 @@ void CMainFrame::OnNotebookSelectionChanged(wxNotebookEvent& event) { pView = wxDynamicCast(pwndNotebookPage, CBOINCBaseView); wxASSERT(NULL != pView); - pView->FireOnListRender(timerEvent); + FireRefreshView(); } event.Skip();