diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-14 18:47:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-14 18:47:16 +0300 |
commit | d16122cae03202761d75384388f52ca084f91ea4 (patch) | |
tree | 921af804051de49732426182b877580a2cba90b6 /src/gui/widgets/desktop.cpp | |
parent | 596436645bef0b41f448e6d7b501a1fc2c5b1fc6 (diff) | |
download | manaplus-d16122cae03202761d75384388f52ca084f91ea4.tar.gz manaplus-d16122cae03202761d75384388f52ca084f91ea4.tar.bz2 manaplus-d16122cae03202761d75384388f52ca084f91ea4.tar.xz manaplus-d16122cae03202761d75384388f52ca084f91ea4.zip |
Fix shadow variables in PopupMenu and Desktop.
Diffstat (limited to 'src/gui/widgets/desktop.cpp')
-rw-r--r-- | src/gui/widgets/desktop.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/desktop.cpp b/src/gui/widgets/desktop.cpp index 46bb3cba3..4aeea03b5 100644 --- a/src/gui/widgets/desktop.cpp +++ b/src/gui/widgets/desktop.cpp @@ -55,10 +55,11 @@ Desktop::Desktop(const Widget2 *const widget) : mVersionLabel(new BrowserBox(this, BrowserBoxMode::AUTO_WRAP, Opaque_false, "browserbox.xml")), mSkin(nullptr), - mBackgroundColor(getThemeColor(ThemeColorId::BACKGROUND, 128)), mBackgroundGrayColor(getThemeColor(ThemeColorId::BACKGROUND_GRAY)), mShowBackground(true) { + mBackgroundColor = getThemeColor(ThemeColorId::BACKGROUND, 128); + addWidgetListener(this); Wallpaper::loadWallpapers(); |