include mouse bindings even in merged cheat sheets

git-svn-id: svn://localhost/ardour2/branches/3.0@5448 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-07-31 20:33:58 +00:00
parent c601f87c12
commit 0caaec6930
1 changed files with 6 additions and 2 deletions

View File

@ -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;
}
}
}