summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIra Rice <irarice@gmail.com>2009-01-26 21:50:02 -0700
committerIra Rice <irarice@gmail.com>2009-01-26 21:50:02 -0700
commit127be512d44927cec17d29778265ab65c427ac33 (patch)
tree5cf365688042f851ebd609e69246b5efff360773
parentcbb9ceaac89f7a29ff36445f2405c1a24b7a0da8 (diff)
downloadmana-client-127be512d44927cec17d29778265ab65c427ac33.tar.gz
mana-client-127be512d44927cec17d29778265ab65c427ac33.tar.bz2
mana-client-127be512d44927cec17d29778265ab65c427ac33.tar.xz
mana-client-127be512d44927cec17d29778265ab65c427ac33.zip
Removed the description option from right click menus on items. With
item popups, this is no longer useful, as well as it never doing anything to begin with. Signed-off-by: Ira Rice <irarice@gmail.com>
-rw-r--r--src/gui/popupmenu.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp
index 88fd273e..bf7c803a 100644
--- a/src/gui/popupmenu.cpp
+++ b/src/gui/popupmenu.cpp
@@ -258,12 +258,6 @@ void PopupMenu::handleLink(const std::string& link)
{
new ItemAmountWindow(AMOUNT_ITEM_DROP, inventoryWindow, mItem);
}
-
- else if (link == "description")
- {
- // do nothing for now, I need to write
- // a window for the description first
- }
else if (link == "party-invite" &&
mBeing != NULL &&
mBeing->getType() == Being::PLAYER)
@@ -304,7 +298,6 @@ void PopupMenu::showPopup(int x, int y, Item *item)
mBrowserBox->addRow(_("@@drop|Drop@@"));
mBrowserBox->addRow(_("@@chat|Add to Chat@@"));
- mBrowserBox->addRow(_("@@description|Description@@"));
mBrowserBox->addRow("##3---");
mBrowserBox->addRow(_("@@cancel|Cancel@@"));