From f23f96aaf3e4fbfa44645a69ca57748a5570f70c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 5 Oct 2013 14:59:54 +0300 Subject: Fix incorrect ShopListBox height. --- src/gui/widgets/shoplistbox.cpp | 7 ++++++- src/gui/widgets/shoplistbox.h | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp index 53e5f25e3..263a94d95 100644 --- a/src/gui/widgets/shoplistbox.cpp +++ b/src/gui/widgets/shoplistbox.cpp @@ -176,8 +176,13 @@ void ShopListBox::draw(gcn::Graphics *gcnGraphics) void ShopListBox::adjustSize() { + BLOCK_START("ShopListBox::adjustSize") if (mListModel) - setHeight(mRowHeight * mListModel->getNumberOfElements()); + { + setHeight(mRowHeight * mListModel->getNumberOfElements() + + 2 * mPadding); + } + BLOCK_END("ShopListBox::adjustSize") } void ShopListBox::setPriceCheck(const bool check) diff --git a/src/gui/widgets/shoplistbox.h b/src/gui/widgets/shoplistbox.h index b5fc7c896..15aff3211 100644 --- a/src/gui/widgets/shoplistbox.h +++ b/src/gui/widgets/shoplistbox.h @@ -72,7 +72,7 @@ class ShopListBox final : public ListBox /** * Adjust List draw size */ - void adjustSize(); + void adjustSize() override; /** * Set on/off the disabling of too expensive items. -- cgit v1.2.3-60-g2f50