summaryrefslogtreecommitdiff
path: root/tools/fmt-bindings
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-07-31 20:33:58 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-07-31 20:33:58 +0000
commit0caaec69305d60f3e5ada8f1354f1dcebd226d2e (patch)
tree2d31ee9cfcadb122057bf12f31a95003c73debea /tools/fmt-bindings
parentc601f87c12e1f336358cfe205461492554c3c114 (diff)
include mouse bindings even in merged cheat sheets
git-svn-id: svn://localhost/ardour2/branches/3.0@5448 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools/fmt-bindings')
-rwxr-xr-xtools/fmt-bindings8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/fmt-bindings b/tools/fmt-bindings
index be1b23bf52..148ca20955 100755
--- a/tools/fmt-bindings
+++ b/tools/fmt-bindings
@@ -182,8 +182,12 @@ while (<>) {
if ($merge_bindings{$lookup}) {
$binding = $merge_bindings{$lookup};
} else {
- # this action is not defined in the merge from set, so forget it
- next;
+ if ($key =~ /^\+/) {
+ # forced inclusion of bindings from template
+ } else {
+ # this action is not defined in the merge from set, so forget it
+ next;
+ }
}
}