Removed obsolete keyboard shortcut from tooltip and redundant colon, branch_3.0, issue 718

This commit is contained in:
DrSlony
2011-06-05 07:09:25 +01:00
parent 9f41ac868a
commit c109330c53
33 changed files with 3 additions and 33 deletions

View File

@@ -138,8 +138,8 @@ void PopUpCommon::show() {
}
void PopUpCommon::setButtonHint() {
Glib::ustring hint = buttonHint.size() ? buttonHint + " : " + sItems.at(selected) : sItems.at(selected);
if (hasMenu) hint += "\n(" + M("POPUPBUTTON_SELECTOPTIONHINT") + ")";
Glib::ustring hint = buttonHint.size() ? buttonHint + " " + sItems.at(selected) : sItems.at(selected);
// if (hasMenu) hint += "\n(" + M("POPUPBUTTON_SELECTOPTIONHINT") + ")";
button->set_tooltip_text(hint);
}