- Fix Explorer toolbar color

This commit is contained in:
Paulo Gustavo Veiga
2012-06-24 20:53:31 -03:00
parent ec41dafcf5
commit 9213dc6aa3
3 changed files with 3 additions and 1 deletions

View File

@@ -475,7 +475,7 @@ mindplot.widget.Menu = new Class({
if ($(buttonId)) {
var tooltip = text;
if (shortcut) {
shortcut = Browser.Platform.mac ? shortcut.replace("meta+", "⌘") : shortcut.replace("meta+", "ctrl");
shortcut = Browser.Platform.mac ? shortcut.replace("meta+", "⌘") : shortcut.replace("meta+", "ctrl+");
tooltip = tooltip + " (" + shortcut + ")";
}
new mindplot.widget.KeyboardShortcutTooltip($(buttonId), tooltip);