From e8d025e215d3164729e9b40f3542071c6418f51e Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Thu, 18 Nov 2004 06:57:37 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4591 --- api/windows_opengl.C | 2 +- checkin_notes | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/api/windows_opengl.C b/api/windows_opengl.C index 1738ce61fb..01162a53b0 100755 --- a/api/windows_opengl.C +++ b/api/windows_opengl.C @@ -209,7 +209,7 @@ static void set_mode(int mode) { } current_graphics_mode = new_mode; - if (new_mode != MODE_HIDE_GRAPHICS && new_mode != MODE_QUIT) { + if (new_mode != MODE_HIDE_GRAPHICS && new_mode != MODE_QUIT && new_mode != MODE_UNSUPPORTED) { make_new_window(); } diff --git a/checkin_notes b/checkin_notes index 649b1554f5..d8e7a0ade9 100755 --- a/checkin_notes +++ b/checkin_notes @@ -19754,6 +19754,10 @@ Rom 17 Nov 2004 - Bug Fix: When the service account is switched to an account that cannot support interact with desktop make sure the screensaver can display the project status. + - Bug Fix: If we have to report back that graphics are not supported in + the current configuration, don't create the window, it only makes + the system jittery. I suspect it has something to do with the + possibility of garbage UI events being sent to the application. api/ windows_opengl.C