From 4520ff8b657ad72ef99976dd12db12bc9318f28f Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Sat, 23 Apr 2005 07:21:00 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=5923 --- checkin_notes | 9 +++++++++ clientgui/MainFrame.cpp | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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();