mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 09:06:33 +01:00
fix fmt-bindings' handling of > and < bindings
git-svn-id: svn://localhost/ardour2/branches/3.0@13587 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
9e18a5d70a
commit
2a0460b150
1 changed files with 4 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ GetOptions ("platform=s" => \$platform,
|
||||||
"accelmap" => \$make_accelmap,
|
"accelmap" => \$make_accelmap,
|
||||||
"merge=s" => \$merge_from);
|
"merge=s" => \$merge_from);
|
||||||
|
|
||||||
if ($platform eq "darwin") {
|
if ($platform eq "osx") {
|
||||||
|
|
||||||
$gtk_modifier_map{'PRIMARY'} = 'Primary';
|
$gtk_modifier_map{'PRIMARY'} = 'Primary';
|
||||||
$gtk_modifier_map{'SECONDARY'} = 'Control';
|
$gtk_modifier_map{'SECONDARY'} = 'Control';
|
||||||
|
|
@ -37,7 +37,7 @@ if ($platform eq "darwin") {
|
||||||
$gtk_modifier_map{'LEVEL4'} = 'Mod1';
|
$gtk_modifier_map{'LEVEL4'} = 'Mod1';
|
||||||
$gtk_modifier_map{'WINDOW'} = 'Control';
|
$gtk_modifier_map{'WINDOW'} = 'Control';
|
||||||
|
|
||||||
$cs_modifier_map{'PRIMARY'} = 'Command';
|
$cs_modifier_map{'PRIMARY'} = 'Cmd';
|
||||||
$cs_modifier_map{'SECONDARY'} = 'Control';
|
$cs_modifier_map{'SECONDARY'} = 'Control';
|
||||||
$cs_modifier_map{'TERTIARY'} = 'Shift';
|
$cs_modifier_map{'TERTIARY'} = 'Shift';
|
||||||
$cs_modifier_map{'LEVEL4'} = 'Mod1';
|
$cs_modifier_map{'LEVEL4'} = 'Mod1';
|
||||||
|
|
@ -101,6 +101,8 @@ if ($platform eq "darwin") {
|
||||||
'Page_Up' => 'Page Up',
|
'Page_Up' => 'Page Up',
|
||||||
'space' => 'space',
|
'space' => 'space',
|
||||||
'KP_' => 'KP$\_$',
|
'KP_' => 'KP$\_$',
|
||||||
|
'greater' => '>',
|
||||||
|
'less' => '<',
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($merge_from) {
|
if ($merge_from) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue