diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-04-12 02:11:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-04-12 02:11:25 +0300 |
commit | 4ddde5f4fa3f4b77c2ddf1d4848d06628d396842 (patch) | |
tree | 8653a426a81a23fccfdeea45c042d59a13691bbf /src/gui/npcdialog.cpp | |
parent | 9ce9d5563195bf9d7d22356252f38bc95b247527 (diff) | |
download | plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.tar.gz plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.tar.bz2 plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.tar.xz plus-4ddde5f4fa3f4b77c2ddf1d4848d06628d396842.zip |
fix random rare crashes in npc and possible other windows.
Diffstat (limited to 'src/gui/npcdialog.cpp')
-rw-r--r-- | src/gui/npcdialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/npcdialog.cpp b/src/gui/npcdialog.cpp index 32f17ecbd..5a886c454 100644 --- a/src/gui/npcdialog.cpp +++ b/src/gui/npcdialog.cpp @@ -281,6 +281,8 @@ void NpcDialog::action(const gcn::ActionEvent &event) if (mInputState == NPC_INPUT_LIST) { + if (gui) + gui->resetClickCount(); const int selectedIndex = mItemList->getSelected(); if (selectedIndex >= static_cast<int>(mItems.size()) |