diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-19 10:48:45 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-19 10:48:45 +0000 |
commit | 4ea68b6102053d591516ff3bc83512c71e2c8ce9 (patch) | |
tree | 33d36396a350525afc2726432f26418092e705a4 /src/gui/itemcontainer.h | |
parent | 46d62ec078de6edabc1979dbdbe7d51189cf2143 (diff) | |
download | mana-4ea68b6102053d591516ff3bc83512c71e2c8ce9.tar.gz mana-4ea68b6102053d591516ff3bc83512c71e2c8ce9.tar.bz2 mana-4ea68b6102053d591516ff3bc83512c71e2c8ce9.tar.xz mana-4ea68b6102053d591516ff3bc83512c71e2c8ce9.zip |
Allowed dragging of already selected items.
Diffstat (limited to 'src/gui/itemcontainer.h')
-rw-r--r-- | src/gui/itemcontainer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/itemcontainer.h b/src/gui/itemcontainer.h index 38dc9f6e..8be338dd 100644 --- a/src/gui/itemcontainer.h +++ b/src/gui/itemcontainer.h @@ -160,7 +160,8 @@ class ItemContainer : public gcn::Widget, int mGridColumns, mGridRows; Image *mSelImg; Item *mSelectedItem, *mHighlightedItem; - bool mDragged, mSwapItems; + int mSelectionStatus; + bool mSwapItems; int mDragPosX, mDragPosY; std::list<SelectionListener*> mListeners; |