From 5308293597162ef1febee61f3b1be22f56b514da Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 31 May 2016 12:19:50 -0400 Subject: fix conditional used to decide whether to copy old config files --- libs/ardour/globals.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc index e68e6f08e3..f3b4a653c7 100644 --- a/libs/ardour/globals.cc +++ b/libs/ardour/globals.cc @@ -304,7 +304,7 @@ copy_configuration_files (string const & old_dir, string const & new_dir, int ol return -1; } - if (old_version == 3) { + if (old_version >= 3) { old_name = Glib::build_filename (old_dir, X_("recent")); new_name = Glib::build_filename (new_dir, X_("recent")); -- cgit v1.2.3