From 4880019218ed253cf277225a5ac4d044d10dabe4 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 7 Sep 2014 11:53:52 -0400 Subject: [PATCH] correct the variable used to name the file when loading the default UI config file --- gtk2_ardour/ui_config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ui_config.cc b/gtk2_ardour/ui_config.cc index 5c98766819..4c7ec10278 100644 --- a/gtk2_ardour/ui_config.cc +++ b/gtk2_ardour/ui_config.cc @@ -87,7 +87,7 @@ UIConfiguration::load_defaults () info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl; - if (!tree.read (default_ui_config_file_name)) { + if (!tree.read (rcfile.c_str())) { error << string_compose(_("cannot read default ui configuration file \"%1\""), rcfile) << endmsg; return -1; }