summaryrefslogtreecommitdiff
path: root/gtk2_ardour/keyboard.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2015-10-26 15:17:42 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-02-22 15:31:24 -0500
commit6991a07902cc844b87c895aa56de613c96b88b4f (patch)
treea19dabdab9fc1c106cda3d4594a0135bb1a18013 /gtk2_ardour/keyboard.cc
parentbc487bb4b02a9780938d6cf8528c888e59161aa9 (diff)
remove all trace of SAE from source code.
This had become incoherent over time, and posed a development hazard and burden going forward
Diffstat (limited to 'gtk2_ardour/keyboard.cc')
-rw-r--r--gtk2_ardour/keyboard.cc9
1 files changed, 2 insertions, 7 deletions
diff --git a/gtk2_ardour/keyboard.cc b/gtk2_ardour/keyboard.cc
index 734c4ecc0e..6181e41e84 100644
--- a/gtk2_ardour/keyboard.cc
+++ b/gtk2_ardour/keyboard.cc
@@ -56,11 +56,7 @@ ArdourKeyboard::find_bindings_files (map<string,string>& files)
vector<std::string> found;
Searchpath spath = ardour_config_search_path();
- if (getenv ("ARDOUR_SAE")) {
- find_files_matching_pattern (found, spath, string_compose ("*SAE-*.%1", Keyboard::binding_filename_suffix));
- } else {
- find_files_matching_pattern (found, spath, string_compose ("*.%1", Keyboard::binding_filename_suffix));
- }
+ find_files_matching_pattern (found, spath, string_compose ("*.%1", Keyboard::binding_filename_suffix));
if (found.empty()) {
return;
@@ -99,8 +95,7 @@ ArdourKeyboard::setup_keybindings ()
binding_files.insert (newpair);
}
- /* check to see if they gave a style name ("SAE", "ergonomic") or
- an actual filename (*.bindings)
+ /* check to see if they gave a style name ("ergonomic") or an actual filename (*.bindings)
*/
if (!keybindings_path.empty() && keybindings_path.find (binding_filename_suffix) == string::npos) {