diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-21 17:01:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-21 17:01:21 +0300 |
commit | 1e5ef5ad665721a4c7824a1c8c0fb48ed7e4dc51 (patch) | |
tree | 44a7200df887851baca5218c20045d203515a497 /src/gui | |
parent | aaddd74d15f8701283623b45a63262084055c291 (diff) | |
download | plus-1e5ef5ad665721a4c7824a1c8c0fb48ed7e4dc51.tar.gz plus-1e5ef5ad665721a4c7824a1c8c0fb48ed7e4dc51.tar.bz2 plus-1e5ef5ad665721a4c7824a1c8c0fb48ed7e4dc51.tar.xz plus-1e5ef5ad665721a4c7824a1c8c0fb48ed7e4dc51.zip |
Fix item selection in shoplistbox class.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/widgets/shoplistbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp index b9d7e18f4..0134a64c9 100644 --- a/src/gui/widgets/shoplistbox.cpp +++ b/src/gui/widgets/shoplistbox.cpp @@ -180,7 +180,7 @@ void ShopListBox::mouseMoved(gcn::MouseEvent &event) return; } - const int index = event.getY() / mRowHeight; + const int index = (event.getY() + mPadding) / mRowHeight; if (index < 0 || index >= mShopItems->getNumberOfElements()) { |