summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gui/popupmenu.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/popupmenu.cpp b/src/gui/popupmenu.cpp
index 50b2f5639..4d781f5ac 100644
--- a/src/gui/popupmenu.cpp
+++ b/src/gui/popupmenu.cpp
@@ -1882,15 +1882,15 @@ void PopupMenu::showPopup(const int x, const int y, Button *const button)
if (btn->isVisible())
{
- mBrowserBox->addRow(strprintf("@@hide button_%s|%s %s@@",
+ mBrowserBox->addRow(strprintf("@@hide button_%s|%s %s (%s)@@",
btn->getActionEventId().c_str(), _("Hide"),
- btn->getCaption().c_str()));
+ btn->getDescription().c_str(), btn->getCaption().c_str()));
}
else
{
- mBrowserBox->addRow(strprintf("@@show button_%s|%s %s@@",
+ mBrowserBox->addRow(strprintf("@@show button_%s|%s %s (%s)@@",
btn->getActionEventId().c_str(), _("Show"),
- btn->getCaption().c_str()));
+ btn->getDescription().c_str(), btn->getCaption().c_str()));
}
}
mBrowserBox->addRow("##3---");