summaryrefslogtreecommitdiff
path: root/src/gui/widgets/shoplistbox.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-12-24 22:32:04 +0300
committerAndrei Karas <akaras@inbox.ru>2012-12-24 22:32:04 +0300
commit4e95f451a793dbac5dbc31361cdc5049de48c3cc (patch)
tree02a1cc506638edd2deb2074abd97330a74435c3a /src/gui/widgets/shoplistbox.cpp
parent22e4c80cc35e552ef39639a874f3c54f11fde747 (diff)
downloadplus-4e95f451a793dbac5dbc31361cdc5049de48c3cc.tar.gz
plus-4e95f451a793dbac5dbc31361cdc5049de48c3cc.tar.bz2
plus-4e95f451a793dbac5dbc31361cdc5049de48c3cc.tar.xz
plus-4e95f451a793dbac5dbc31361cdc5049de48c3cc.zip
Add color for selected text in listboxes.
New theme color: LISTBOX_SELECTED
Diffstat (limited to 'src/gui/widgets/shoplistbox.cpp')
-rw-r--r--src/gui/widgets/shoplistbox.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index 86c2e2e67..7d23189d1 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -155,7 +155,10 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics)
graphics->drawImage(icon, mPadding, y + mPadding);
}
}
- graphics->setColor(mForegroundColor);
+ if (mSelected == i)
+ graphics->setColor(mForegroundSelectedColor);
+ else
+ graphics->setColor(mForegroundColor);
graphics->drawText(mListModel->getElementAt(i),
ITEM_ICON_SIZE + mPadding,
y + (ITEM_ICON_SIZE - getFont()->getHeight()) / 2 + mPadding);