Save user key bindings to the right place. Fixes #3773.

git-svn-id: svn://localhost/ardour2/branches/3.0@8854 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-02-15 13:48:50 +00:00
parent 32ab86230e
commit 4bd5287980

View File

@ -59,11 +59,10 @@ ArdourKeyboard::setup_keybindings ()
/* set up the per-user bindings path */
strs.push_back (Glib::get_home_dir());
strs.push_back (".ardour3");
strs.push_back ("ardour.bindings");
sys::path p (user_config_directory ());
p /= "ardour.bindings";
user_keybindings_path = Glib::build_filename (strs);
user_keybindings_path = p.to_string ();
if (Glib::file_test (user_keybindings_path, Glib::FILE_TEST_EXISTS)) {
std::pair<string,string> newpair;