diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-26 21:21:43 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-26 21:21:43 -0700 |
commit | 65e552d0bd3dee1f1962fc7e9adac4126ab603a4 (patch) | |
tree | bb40f54607b38a66a4e07af27cd54f08a10be105 /src/gui/listbox.cpp | |
parent | 354ca55186072cd152f3b13d58985b87e55d8e42 (diff) | |
download | mana-client-65e552d0bd3dee1f1962fc7e9adac4126ab603a4.tar.gz mana-client-65e552d0bd3dee1f1962fc7e9adac4126ab603a4.tar.bz2 mana-client-65e552d0bd3dee1f1962fc7e9adac4126ab603a4.tar.xz mana-client-65e552d0bd3dee1f1962fc7e9adac4126ab603a4.zip |
Adjusted selection colors so that it blends better with the Aethyra
theme.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/listbox.cpp')
-rw-r--r-- | src/gui/listbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp index 21b59a07..990a0ade 100644 --- a/src/gui/listbox.cpp +++ b/src/gui/listbox.cpp @@ -36,7 +36,7 @@ void ListBox::draw(gcn::Graphics *graphics) if (!mListModel) return; - graphics->setColor(gcn::Color(110, 160, 255)); + graphics->setColor(gcn::Color(235, 200, 115)); graphics->setFont(getFont()); int fontHeight = getFont()->getHeight(); |