distinguish global peak-reset button from meters:
[ardour.git] / gtk2_ardour / keyboard.cc
index 75a96ec98b3a0d4112cdd352cf798c8d58b7cd28..ca65a2b3f2ee5f10a2b45770609327a54fd4e0c9 100644 (file)
 
 */
 
+#include "pbd/convert.h"
 #include "pbd/error.h"
 #include "pbd/file_utils.h"
 
 #include "ardour/filesystem_paths.h"
 
 #include "ardour_ui.h"
+#include "public_editor.h"
 #include "keyboard.h"
 #include "opts.h"
 
 #include "i18n.h"
 
-#ifdef SearchPath
-#undef SearchPath
-#endif
-
 using namespace std;
 using namespace Gtk;
 using namespace PBD;
@@ -63,7 +61,9 @@ ArdourKeyboard::setup_keybindings ()
 
        /* set up the per-user bindings path */
 
-       user_keybindings_path = Glib::build_filename (user_config_directory(), "ardour.bindings");
+       string lowercase_program_name = downcase (PROGRAM_NAME);
+
+       user_keybindings_path = Glib::build_filename (user_config_directory(), lowercase_program_name + ".bindings");
 
        if (Glib::file_test (user_keybindings_path, Glib::FILE_TEST_EXISTS)) {
                std::pair<string,string> newpair;
@@ -127,7 +127,7 @@ ArdourKeyboard::setup_keybindings ()
                        /* not absolute - look in the usual places */
                        std::string keybindings_file;
 
-                       if ( ! find_file_in_search_path (ardour_config_search_path(), keybindings_path, keybindings_file)) {
+                       if ( ! find_file (ardour_config_search_path(), keybindings_path, keybindings_file)) {
 
                                if (keybindings_path == default_bindings) {
                                        error << string_compose (_("Default keybindings not found - %1 will be hard to use!"), PROGRAM_NAME) << endmsg;
@@ -157,9 +157,6 @@ ArdourKeyboard::setup_keybindings ()
                                        error << string_compose (_("Default keybindings not found - %1 will be hard to use!"), PROGRAM_NAME) << endmsg;
                                        return;
                                } else {
-                                       warning << string_compose (_("Key bindings file \"%1\" not found. Default bindings used instead"),
-                                                                  keybindings_path)
-                                               << endmsg;
                                        keybindings_path = default_bindings;
                                }