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 | |
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>
-rw-r--r-- | src/gui/listbox.cpp | 2 | ||||
-rw-r--r-- | src/gui/shoplistbox.cpp | 2 |
2 files changed, 2 insertions, 2 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(); diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp index b6a12658..765b9f08 100644 --- a/src/gui/shoplistbox.cpp +++ b/src/gui/shoplistbox.cpp @@ -72,7 +72,7 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) if (i == mSelected) { - backgroundColor = gcn::Color(110, 160, 255); + backgroundColor = gcn::Color(235, 200, 115); } else if (mShopItems && mPlayerMoney < mShopItems->at(i)->getPrice() && mPriceCheck) |