From 252347b9522394619157d198cbe607332abc3a8b Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Tue, 14 Oct 2008 12:49:07 +0000 Subject: [PATCH] MGR: Filter events during Please Wait dialog svn path=/trunk/boinc/; revision=16198 --- clientgui/BOINCGUIApp.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clientgui/BOINCGUIApp.cpp b/clientgui/BOINCGUIApp.cpp index 97c6916206..dcdbe8326d 100644 --- a/clientgui/BOINCGUIApp.cpp +++ b/clientgui/BOINCGUIApp.cpp @@ -901,7 +901,7 @@ int CBOINCGUIApp::FilterEvent(wxEvent &event) { } #if 0 - // Allow all events except Command and Timer events + // Allow all except Command, Timer and Mouse Moved events if (event.IsCommandEvent()) { return false; } @@ -909,6 +909,10 @@ int CBOINCGUIApp::FilterEvent(wxEvent &event) { if (theEventType == wxEVT_TIMER) { return false; } + + if (theEventType == wxEVT_TASKBAR_MOVE) { + return false; + } return -1; #else