diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-30 12:46:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-30 12:46:49 +0300 |
commit | 9bb11133522836a9c5e251550ac88c9a4e091c0e (patch) | |
tree | f65703ac1a51b79a0766c48420769d28d0847f41 /src/gui/widgets/checkbox.cpp | |
parent | e55ed9a138e97f6fba5e3b6858a755f8a50197d2 (diff) | |
download | plus-9bb11133522836a9c5e251550ac88c9a4e091c0e.tar.gz plus-9bb11133522836a9c5e251550ac88c9a4e091c0e.tar.bz2 plus-9bb11133522836a9c5e251550ac88c9a4e091c0e.tar.xz plus-9bb11133522836a9c5e251550ac88c9a4e091c0e.zip |
Move main window related code into windowmanager.
Diffstat (limited to 'src/gui/widgets/checkbox.cpp')
-rw-r--r-- | src/gui/widgets/checkbox.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp index 86ebefd60..508bfead4 100644 --- a/src/gui/widgets/checkbox.cpp +++ b/src/gui/widgets/checkbox.cpp @@ -66,6 +66,7 @@ #include "gui/widgets/checkbox.h" #include "client.h" +#include "settings.h" #include "input/inputaction.h" @@ -165,7 +166,7 @@ void CheckBox::draw(Graphics *const graphics) void CheckBox::updateAlpha() { - const float alpha = std::max(client->getGuiAlpha(), + const float alpha = std::max(settings.guiAlpha, theme->getMinimumOpacity()); if (mAlpha != alpha) |