MGR: Filter events during Please Wait dialog

svn path=/trunk/boinc/; revision=16198
This commit is contained in:
Charlie Fenton 2008-10-14 12:49:07 +00:00
parent 39f17fc77c
commit 252347b952
1 changed files with 5 additions and 1 deletions

View File

@ -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