From ce65dbfa21d30eb1ad54471a11c8e2dde2876545 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 7 Sep 2014 11:55:40 -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 bc3109ea55..7a4359d61d 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)) { error << string_compose(_("cannot read default ui configuration file \"%1\""), rcfile) << endmsg; return -1; }