*** empty log message ***

svn path=/trunk/boinc/; revision=6208
This commit is contained in:
Rom Walton 2005-05-21 00:38:55 +00:00
parent e57e4cf5f8
commit e82d4f2b6e
2 changed files with 10 additions and 5 deletions

View File

@ -6836,3 +6836,10 @@ David 20 May 2005
client/
app.C
Rom 20 May 2005
- Fix the one off bug that would allow the screensaver to continue operation
when only one click of the mouse occurred or one click of the keyboard.
client/
app_graphics.C

View File

@ -77,12 +77,10 @@ void ACTIVE_TASK::check_graphics_mode_ack() {
if (app_client_shm.shm->graphics_reply.get_msg(buf)) {
app_client_shm.decode_graphics_msg(buf, gm);
scope_messages.printf(
"ACTIVE_TASK::check_graphics_mode_ack(): got graphics ack %s for %s\n",
buf, result->name
"ACTIVE_TASK::check_graphics_mode_ack(): got graphics ack %s for %s, previous mode %s\n",
buf, result->name, xml_graphics_modes[graphics_mode_acked]
);
if (gm.mode == MODE_HIDE_GRAPHICS && // new mode
graphics_mode_acked == MODE_FULLSCREEN && // old mode
is_ss_app) {
if (is_ss_app && (gm.mode != MODE_FULLSCREEN) && (gm.mode != MODE_REREAD_PREFS)) {
gstate.ss_logic.stop_ss();
scope_messages.printf(
"ACTIVE_TASK::check_graphics_mode_ack(): shutting down the screensaver\n"