13
0

change name of default bindings to us.bindings (and thus binding definitions to us.bindings.in)

"us" indicates keyboard layout.
This commit is contained in:
Paul Davis 2015-09-01 22:07:37 -04:00
parent 379bc35948
commit 3ff925fedb
3 changed files with 2 additions and 8 deletions

View File

@ -52,7 +52,7 @@ void
ArdourKeyboard::setup_keybindings ()
{
using namespace ARDOUR_COMMAND_LINE;
string default_bindings = "mnemonic-us.bindings";
string default_bindings = "us.bindings";
vector<string> strs;
binding_files.clear ();

View File

@ -715,15 +715,11 @@ def build(bld):
# Keybindings
# 'SAE-de-keypad', 'SAE-de-nokeypad', 'SAE-us-keypad',
# 'SAE-us-nokeypad', 'ergonomic-us'
# NATIVE ARDOUR BINDING FILES
# explicitly state the use of perl here so that it works on windows too
#
a_rule = 'perl ../tools/fmt-bindings --platform="%s" --winkey="%s" --accelmap ${SRC} >${TGT}' % (sys.platform, bld.env['WINDOWS_KEY'] )
for b in [ 'mnemonic-us' ] :
for b in [ 'us' ] :
obj = bld(
target = b + '.bindings',
source = b + '.bindings.in',
@ -733,8 +729,6 @@ def build(bld):
# not modified at present
bld.install_files(bld.env['CONFDIR'], 'dark.colors')
bld.install_files(bld.env['CONFDIR'], 'step_editing.bindings')
bld.install_files(bld.env['CONFDIR'], 'mixer.bindings')
# Icons/Images
bld.install_files(os.path.join (bld.env['DATADIR'], 'icons'), bld.path.ant_glob('icons/*.png'))