diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-24 12:48:40 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-24 12:48:40 +0000 |
commit | ad916910b34d91db78c5eb6dc966745117bd0d6f (patch) | |
tree | 7cbc1f41d49a5715b723c325fdbf6f3aa7e5ebd9 /src/gui/itemcontainer.cpp | |
parent | 657f2b37b3b0b349cc7094541c6ade7d3d8e329d (diff) | |
download | mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.tar.gz mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.tar.bz2 mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.tar.xz mana-ad916910b34d91db78c5eb6dc966745117bd0d6f.zip |
Disabled non-functional item shortcut window.
Diffstat (limited to 'src/gui/itemcontainer.cpp')
-rw-r--r-- | src/gui/itemcontainer.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp index 0e203905..74d1abd1 100644 --- a/src/gui/itemcontainer.cpp +++ b/src/gui/itemcontainer.cpp @@ -30,7 +30,7 @@ #include "../graphics.h" #include "../inventory.h" #include "../item.h" -#include "../itemshortcut.h" +//#include "../itemshortcut.h" #include "../log.h" #include "../resources/image.h" @@ -198,7 +198,7 @@ ItemContainer::mousePressed(gcn::MouseEvent &event) int my = event.getY(); int index = mx / gridWidth + ((my / gridHeight) * columns) + 2; - itemShortcut->setItemSelected(NULL); + //itemShortcut->setItemSelected(NULL); // Fix for old server, it should be: if (index >= mMaxItems) if (index > mMaxItems + 1) { @@ -207,9 +207,9 @@ ItemContainer::mousePressed(gcn::MouseEvent &event) } Item *item = mInventory->getItem(index); setSelectedItem(item); - if (!item->isEquipment()) - { - itemShortcut->setItemSelected(item); - } + //if (!item->isEquipment()) + //{ + // itemShortcut->setItemSelected(item); + //} } } |