fix conditional used to decide whether to copy old config files
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 31 May 2016 16:19:50 +0000 (12:19 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 31 May 2016 19:30:46 +0000 (15:30 -0400)
libs/ardour/globals.cc

index e68e6f08e30517b8d1ff12bb11d98499bae5be85..f3b4a653c718d8bdfe13a53a9dba10648b03bec2 100644 (file)
@@ -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"));