diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-29 01:02:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-29 01:02:00 +0300 |
commit | 8173f60c83d176e10412b1dc1191d7987cebdb10 (patch) | |
tree | a58654240215f64676ab73850ecb29ee83a04631 /src/gui/widgets | |
parent | 46696c84bad31e35e003b5c09998503119b128eb (diff) | |
download | plus-8173f60c83d176e10412b1dc1191d7987cebdb10.tar.gz plus-8173f60c83d176e10412b1dc1191d7987cebdb10.tar.bz2 plus-8173f60c83d176e10412b1dc1191d7987cebdb10.tar.xz plus-8173f60c83d176e10412b1dc1191d7987cebdb10.zip |
Add checkbox own color.
Parameter "CHECKBOX" in colors.xml
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/checkbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/checkbox.cpp b/src/gui/widgets/checkbox.cpp index 04ac998bf..72ca9eb8d 100644 --- a/src/gui/widgets/checkbox.cpp +++ b/src/gui/widgets/checkbox.cpp @@ -96,7 +96,7 @@ CheckBox::CheckBox(const std::string &caption, bool selected, if (listener) addActionListener(listener); - setForegroundColor(Theme::getThemeColor(Theme::TEXT)); + setForegroundColor(Theme::getThemeColor(Theme::CHECKBOX)); } CheckBox::~CheckBox() |