diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-20 21:41:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-20 21:41:08 +0300 |
commit | cf1744f779b38bdc3e5119ab831037ff3228a898 (patch) | |
tree | ace3e1d03b55b0a861d3150e36c8fafda9fc2994 /src | |
parent | d9994f114b1febf4c075d77c0fb3e7a44e510e20 (diff) | |
download | plus-cf1744f779b38bdc3e5119ab831037ff3228a898.tar.gz plus-cf1744f779b38bdc3e5119ab831037ff3228a898.tar.bz2 plus-cf1744f779b38bdc3e5119ab831037ff3228a898.tar.xz plus-cf1744f779b38bdc3e5119ab831037ff3228a898.zip |
Add option to allow screensaver. (by default screensaver disabled)
Diffstat (limited to 'src')
-rw-r--r-- | src/client.cpp | 5 | ||||
-rw-r--r-- | src/defaults.cpp | 1 | ||||
-rw-r--r-- | src/gui/setup_visual.cpp | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 7168f0cec..5dd417670 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -355,6 +355,11 @@ void Client::gameInit() putenv("SDL_VIDEO_CENTERED=0"); #endif + if (config.getBoolValue("allowscreensaver")) + putenv("SDL_VIDEO_ALLOW_SCREENSAVER=1"); + else + putenv("SDL_VIDEO_ALLOW_SCREENSAVER=0"); + chatLogger = new ChatLogger; if (mOptions.chatLogDir == "") chatLogger->setBaseLogDir(mLocalDataDir + std::string("/logs/")); diff --git a/src/defaults.cpp b/src/defaults.cpp index a020fbe1f..d29a818a7 100644 --- a/src/defaults.cpp +++ b/src/defaults.cpp @@ -267,6 +267,7 @@ DefaultsData* getConfigDefaults() AddDEF("useAtlases", true); AddDEF("useTextureSampler", false); AddDEF("ministatussaved", 0); + AddDEF("allowscreensaver", false); return configData; } diff --git a/src/gui/setup_visual.cpp b/src/gui/setup_visual.cpp index a7d83b11d..7b35df3a1 100644 --- a/src/gui/setup_visual.cpp +++ b/src/gui/setup_visual.cpp @@ -111,6 +111,9 @@ Setup_Visual::Setup_Visual(const Widget2 *const widget) : "", "centerwindow", this, "centerwindowEvent"); #endif + new SetupItemCheckBox(_("Allow screensaver to run"), + "", "allowscreensaver", this, "allowscreensaverEvent"); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } |