diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-29 01:33:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-08-29 01:33:26 +0300 |
commit | 12b59d229f700b6e1b2364407d83bebfc83df907 (patch) | |
tree | 4409330b0c0052f2f6ce3ac41a9982f666dccbdf /src/gui/widgets/listbox.cpp | |
parent | 82e111b764205e9f070c2af0562433800b9eabea (diff) | |
download | plus-12b59d229f700b6e1b2364407d83bebfc83df907.tar.gz plus-12b59d229f700b6e1b2364407d83bebfc83df907.tar.bz2 plus-12b59d229f700b6e1b2364407d83bebfc83df907.tar.xz plus-12b59d229f700b6e1b2364407d83bebfc83df907.zip |
Add listbox own color.
Parameter "LISTBOX" in colors.xml
Diffstat (limited to 'src/gui/widgets/listbox.cpp')
-rw-r--r-- | src/gui/widgets/listbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/listbox.cpp b/src/gui/widgets/listbox.cpp index 46067df91..f11632675 100644 --- a/src/gui/widgets/listbox.cpp +++ b/src/gui/widgets/listbox.cpp @@ -45,7 +45,7 @@ ListBox::ListBox(gcn::ListModel *listModel): mHighlightColor(Theme::getThemeColor(Theme::HIGHLIGHT)), mDistributeMousePressed(true) { - setForegroundColor(Theme::getThemeColor(Theme::TEXT)); + setForegroundColor(Theme::getThemeColor(Theme::LISTBOX)); } ListBox::~ListBox() |