From 588148553eb41672147fb98d0e7ad558a8c2884c Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 29 Mar 2010 07:54:00 -0600 Subject: Fix ListBox::draw to work more correctly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Thorbjørn Lindeijer --- src/gui/widgets/listbox.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/widgets/listbox.cpp b/src/gui/widgets/listbox.cpp index eed6b8d0..ef591023 100644 --- a/src/gui/widgets/listbox.cpp +++ b/src/gui/widgets/listbox.cpp @@ -63,17 +63,17 @@ void ListBox::draw(gcn::Graphics *graphics) (int) (mAlpha * 255.0f))); graphics->setFont(getFont()); - const int fontHeight = getFont()->getHeight(); + const int height = getRowHeight(); // Draw filled rectangle around the selected list element if (mSelected >= 0) - graphics->fillRectangle(gcn::Rectangle(0, fontHeight * mSelected, - getWidth(), fontHeight)); + graphics->fillRectangle(gcn::Rectangle(0, height * mSelected, + getWidth(), height)); // Draw the list elements graphics->setColor(Theme::getThemeColor(Theme::TEXT)); for (int i = 0, y = 0; i < mListModel->getNumberOfElements(); - ++i, y += fontHeight) + ++i, y += height) { graphics->drawText(mListModel->getElementAt(i), 1, y); } -- cgit v1.2.3-70-g09d2