summaryrefslogtreecommitdiff
path: root/src/gui/widgets/shoplistbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/shoplistbox.cpp')
-rw-r--r--src/gui/widgets/shoplistbox.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp
index b4799a218..b29951a73 100644
--- a/src/gui/widgets/shoplistbox.cpp
+++ b/src/gui/widgets/shoplistbox.cpp
@@ -155,16 +155,22 @@ void ShopListBox::draw(Graphics *graphics)
}
if (mSelected == i)
{
- graphics->setColorAll(mForegroundSelectedColor,
- mForegroundSelectedColor2);
+ font->drawString(graphics,
+ mForegroundSelectedColor,
+ mForegroundSelectedColor2,
+ mListModel->getElementAt(i),
+ ITEM_ICON_SIZE + mPadding,
+ y + (ITEM_ICON_SIZE - fontHeigh) / 2 + mPadding);
}
else
{
- graphics->setColorAll(mForegroundColor, mForegroundColor2);
+ font->drawString(graphics,
+ mForegroundColor,
+ mForegroundColor2,
+ mListModel->getElementAt(i),
+ ITEM_ICON_SIZE + mPadding,
+ y + (ITEM_ICON_SIZE - fontHeigh) / 2 + mPadding);
}
- font->drawString(graphics, mListModel->getElementAt(i),
- ITEM_ICON_SIZE + mPadding,
- y + (ITEM_ICON_SIZE - fontHeigh) / 2 + mPadding);
}
BLOCK_END("ShopListBox::draw")
}