diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-10-12 00:02:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-10-12 00:02:00 +0300 |
commit | e4883337848c708cc344eb94bac005b500d73e01 (patch) | |
tree | 97d4c06d193950338d883779b42cbd004d51ff47 /src/gui/widgets/listbox.h | |
parent | 4dbda55f670866db29a64ca7a79500efbe6f8d00 (diff) | |
download | plus-e4883337848c708cc344eb94bac005b500d73e01.tar.gz plus-e4883337848c708cc344eb94bac005b500d73e01.tar.bz2 plus-e4883337848c708cc344eb94bac005b500d73e01.tar.xz plus-e4883337848c708cc344eb94bac005b500d73e01.zip |
Disallow double click in lists into two differnt selected items at same time.
Diffstat (limited to 'src/gui/widgets/listbox.h')
-rw-r--r-- | src/gui/widgets/listbox.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/widgets/listbox.h b/src/gui/widgets/listbox.h index f484c8ad0..4a061bd73 100644 --- a/src/gui/widgets/listbox.h +++ b/src/gui/widgets/listbox.h @@ -78,6 +78,7 @@ class ListBox : public gcn::ListBox protected: gcn::Color mHighlightColor; bool mDistributeMousePressed; + int mOldSelected; static float mAlpha; }; |