summaryrefslogtreecommitdiff
path: root/gtk2_ardour/SConscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-05-17 03:06:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-05-17 03:06:33 +0000
commit7a5eed3048ad5894302c53e4b9a56ca7abd2a03c (patch)
treeecb9210b7acef7454df4d4bf903d1742eadf9071 /gtk2_ardour/SConscript
parent7deb14773baf3ebf191c973665fc0c3069cc39fb (diff)
allow waf (& hopefully still scons) to correctly generate key bindings files
git-svn-id: svn://localhost/ardour2/branches/3.0@5091 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/SConscript')
-rw-r--r--gtk2_ardour/SConscript20
1 files changed, 10 insertions, 10 deletions
diff --git a/gtk2_ardour/SConscript b/gtk2_ardour/SConscript
index be86d42a17..ff940c49ca 100644
--- a/gtk2_ardour/SConscript
+++ b/gtk2_ardour/SConscript
@@ -451,20 +451,20 @@ if gtkardour['GTKOSX']:
# NSCommand (aka "Command" aka "Apple" aka "Cauliflower") -> Meta
# NSAlternate (aka "Option") -> Mod1
#
- keybindings_dict['%PRIMARY%'] = 'Meta'
- keybindings_dict['%SECONDARY%'] = 'Mod1'
- keybindings_dict['%TERTIARY%'] = 'Shift'
- keybindings_dict['%LEVEL4%'] = 'Ctrl'
- keybindings_dict['%WINDOW%'] = 'Mod1'
+ keybindings_dict['@PRIMARY@'] = 'Meta'
+ keybindings_dict['@SECONDARY@'] = 'Mod1'
+ keybindings_dict['@TERTIARY@'] = 'Shift'
+ keybindings_dict['@LEVEL4@'] = 'Ctrl'
+ keybindings_dict['@WINDOW@'] = 'Mod1'
else:
#
# Ctrl, Alt, Shift, Mod4(Super/Windows/Hyper)
#
- keybindings_dict['%PRIMARY%'] = 'Ctrl'
- keybindings_dict['%SECONDARY%'] = 'Alt'
- keybindings_dict['%TERTIARY%'] = 'Shift'
- keybindings_dict['%LEVEL4%'] = env['WINDOWS_KEY']
- keybindings_dict['%WINDOW%'] = 'Alt'
+ keybindings_dict['@PRIMARY@'] = 'Ctrl'
+ keybindings_dict['@SECONDARY@'] = 'Alt'
+ keybindings_dict['@TERTIARY@'] = 'Shift'
+ keybindings_dict['@LEVEL4@'] = env['WINDOWS_KEY']
+ keybindings_dict['@WINDOW@'] = 'Alt'
for b in [ 'SAE-de-keypad', 'SAE-de-nokeypad', 'SAE-us-keypad', 'SAE-us-nokeypad', 'mnemonic-us', 'ergonomic-us' ]:
target_file = b + '.bindings'