mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=9687
This commit is contained in:
parent
f5098122d4
commit
5245b5cfaa
|
@ -3000,3 +3000,16 @@ David 17 Mar 2006
|
|||
acct_mgr.C,h
|
||||
doc/
|
||||
acct_mgt.php
|
||||
|
||||
Rom 17 Mar 2006
|
||||
- Bug Fix: If graphics have been disabled because the client configuration
|
||||
cannot handle them, then report back to the screensaver that graphics
|
||||
are not available instead of cycling through them.
|
||||
|
||||
This also reduces the bug surface area for applications who are having
|
||||
problems with application graphics since it avoids spinning up the
|
||||
graphics window even though it cannot be seen.
|
||||
|
||||
client/
|
||||
ss_logic.C
|
||||
|
||||
|
|
|
@ -128,6 +128,12 @@ void SS_LOGIC::poll() {
|
|||
return;
|
||||
}
|
||||
|
||||
if (gstate.disable_graphics) {
|
||||
reset();
|
||||
ss_status = SS_STATUS_NOGRAPHICSAPPSEXECUTING;
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// check if it's time to go to black screen
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue