diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-04-03 02:57:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-04-03 02:57:47 +0300 |
commit | b1d2dc573da58236e8a972bbab7a52345aeee8c1 (patch) | |
tree | 6493c7de529b6cce7a3cee38b23b58b7e2da3711 /src/gui/popupmenu.cpp | |
parent | 51ff8587d3a008e9c4867b18034640f58063d4a8 (diff) | |
download | plus-b1d2dc573da58236e8a972bbab7a52345aeee8c1.tar.gz plus-b1d2dc573da58236e8a972bbab7a52345aeee8c1.tar.bz2 plus-b1d2dc573da58236e8a972bbab7a52345aeee8c1.tar.xz plus-b1d2dc573da58236e8a972bbab7a52345aeee8c1.zip |
Add option clear to context menu in drops window.
Diffstat (limited to 'src/gui/popupmenu.cpp')
-rw-r--r-- | src/gui/popupmenu.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp index d37e8f351..d896b9420 100644 --- a/src/gui/popupmenu.cpp +++ b/src/gui/popupmenu.cpp @@ -1403,13 +1403,10 @@ void PopupMenu::handleLink(const std::string &link, } } } - else if (link == "load old drop shortcuts") + else if (link == "clear drops") { if (dropShortcut) - { - dropShortcut->load(true); - dropShortcut->save(); - } + dropShortcut->clear(); } else if (link == "edit spell" && mSpell) { @@ -2022,8 +2019,7 @@ void PopupMenu::showDropPopup(int x, int y, Item *item) mBrowserBox->addRow("chat", _("Add to chat")); mBrowserBox->addRow("##3---"); } - mBrowserBox->addRow("load old drop shortcuts", - _("Load old drop shortcuts")); + mBrowserBox->addRow("clear drops", _("Clear drop window")); mBrowserBox->addRow("##3---"); mBrowserBox->addRow("cancel", _("Cancel")); |