diff options
author | Ira Rice <irarice@gmail.com> | 2009-03-14 09:33:48 -0600 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-14 09:33:48 -0600 |
commit | 698e166377fa4e7e4e4a971af33458c68bd70809 (patch) | |
tree | 445020bd2cfd7812a6583f3080de0ca6a05d4117 /src/gui/itemlinkhandler.cpp | |
parent | a1b399ad3956b03ce26416abd906f22e3c3d2d82 (diff) | |
download | mana-client-698e166377fa4e7e4e4a971af33458c68bd70809.tar.gz mana-client-698e166377fa4e7e4e4a971af33458c68bd70809.tar.bz2 mana-client-698e166377fa4e7e4e4a971af33458c68bd70809.tar.xz mana-client-698e166377fa4e7e4e4a971af33458c68bd70809.zip |
Commented up item popups, speech bubbles, as well as only update item
info on item change. Also fixed color updating for item shortcuts and
item links, as the displayed colors wouldn't update on change on color
change in the setup color dialog.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/itemlinkhandler.cpp')
-rw-r--r-- | src/gui/itemlinkhandler.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gui/itemlinkhandler.cpp b/src/gui/itemlinkhandler.cpp index 06263ce2..e9993c2d 100644 --- a/src/gui/itemlinkhandler.cpp +++ b/src/gui/itemlinkhandler.cpp @@ -33,6 +33,7 @@ ItemLinkHandler::ItemLinkHandler() { mItemPopup = new ItemPopup; + mItemPopup->setOpaque(false); } ItemLinkHandler::~ItemLinkHandler() @@ -50,11 +51,17 @@ void ItemLinkHandler::handleLink(const std::string &link) { const ItemInfo &iteminfo = ItemDB::get(id); - mItemPopup->setItem(iteminfo); + if (iteminfo.getName() != mItemPopup->getItemName()) + mItemPopup->setItem(iteminfo); if (mItemPopup->isVisible()) + { mItemPopup->setVisible(false); + } else + { + mItemPopup->updateColors(); mItemPopup->view(viewport->getMouseX(), viewport->getMouseY()); + } } } |