summaryrefslogtreecommitdiff
path: root/gtk2_ardour/keyeditor.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-04 22:03:52 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-04 22:03:52 +0000
commit97d74666e9e62f5d63765e236e02dbf8d145eee4 (patch)
tree797702dc98be56c790df0d83532e982d0c8b6bca /gtk2_ardour/keyeditor.cc
parentb0a2eb359dfacf6a551a5a6af581702e66d81576 (diff)
lets see what gtk/osx displays for key bindings without us editing them
git-svn-id: svn://localhost/ardour2/branches/3.0@10894 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/keyeditor.cc')
-rw-r--r--gtk2_ardour/keyeditor.cc13
1 files changed, 7 insertions, 6 deletions
diff --git a/gtk2_ardour/keyeditor.cc b/gtk2_ardour/keyeditor.cc
index 5ebc4178c8..bafa0a4f6c 100644
--- a/gtk2_ardour/keyeditor.cc
+++ b/gtk2_ardour/keyeditor.cc
@@ -286,16 +286,17 @@ KeyEditor::populate ()
#ifdef GTKOSX
string label = (*k);
-
+
/* Gtk/Quartz maps:
NSAlternate/NSOption key to Mod1
- NSCommand key to Meta
+ NSCommand key to Mod2
*/
- replace_all (label, "<Meta>", _("Command-"));
- replace_all (label, "<Alt>", _("Option-"));
- replace_all (label, "<Shift>", _("Shift-"));
- replace_all (label, "<Control>", _("Control-"));
+// replace_all (label, "<Primary>", _("Command-"));
+// replace_all (label, "<Alt>", _("Option-"));
+// replace_all (label, "<Shift>", _("Shift-"));
+// replace_all (label, "<Control>", _("Control-"));
+
row[columns.binding] = label;
#else
row[columns.binding] = (*k);