From 12d73b5c3adf31cb4470de8fb5e393f6ca548db9 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Fri, 28 Nov 2008 09:25:29 +0000 Subject: [PATCH] MGR: Erase and refresh entire Tasks panel when changing selections to try to fix another instance of cosmetic bug reported by David on Windows svn path=/trunk/boinc/; revision=16585 --- checkin_notes | 7 +++++++ clientgui/BOINCBaseView.cpp | 1 + 2 files changed, 8 insertions(+) diff --git a/checkin_notes b/checkin_notes index 4d708e4ced..714c35650d 100644 --- a/checkin_notes +++ b/checkin_notes @@ -9694,3 +9694,10 @@ Rom 27 Nov 2008 clientgui/ BOINCGUIApp.cpp DlgExitMessage.cpp + +Charlie 28 Nov 2008 + - MGR: Erase and refresh entire Tasks panel when changing selections to try + to fix another instance of cosmetic bug reported by David on Windows. + + clientgui/ + BOINCBaseView.cpp diff --git a/clientgui/BOINCBaseView.cpp b/clientgui/BOINCBaseView.cpp index def5d0b067..44c3449468 100644 --- a/clientgui/BOINCBaseView.cpp +++ b/clientgui/BOINCBaseView.cpp @@ -708,6 +708,7 @@ void CBOINCBaseView::PostUpdateSelection(){ wxASSERT(m_pTaskPane); m_pTaskPane->UpdateControls(); Layout(); + RefreshTaskPane(); }