diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/theme.cpp | 1 | ||||
-rw-r--r-- | src/gui/theme.h | 1 | ||||
-rw-r--r-- | src/gui/widgets/window.cpp | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index 9aa920bc7..93dfd17c3 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -670,6 +670,7 @@ static int readColorType(const std::string &type) "TAB", "TEXTBOX", "TEXTFIELD", + "WINDOW", "PARTY_CHAT_TAB", "PARTY_SOCIAL_TAB", "GUILD_CHAT_TAB", diff --git a/src/gui/theme.h b/src/gui/theme.h index 2c9588b6c..259da1a66 100644 --- a/src/gui/theme.h +++ b/src/gui/theme.h @@ -178,6 +178,7 @@ class Theme : public Palette, public ConfigListener TAB, TEXTBOX, TEXTFIELD, + WINDOW, PARTY_CHAT_TAB, PARTY_SOCIAL_TAB, GUILD_CHAT_TAB, diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp index 2350ed958..355f12bee 100644 --- a/src/gui/widgets/window.cpp +++ b/src/gui/widgets/window.cpp @@ -124,7 +124,7 @@ Window::Window(const std::string &caption, bool modal, Window *parent, addWidgetListener(this); mCaptionFont = getFont(); - setForegroundColor(Theme::getThemeColor(Theme::TEXT)); + setForegroundColor(Theme::getThemeColor(Theme::WINDOW)); } Window::~Window() |