From 64cb0a6e4bfd09591eb247b23970b3eeb334ca27 Mon Sep 17 00:00:00 2001 From: Johannes Mueller Date: Wed, 1 Apr 2020 22:41:52 +0200 Subject: [PATCH] Let the user also choose template archives from Ardour 5.x --- gtk2_ardour/template_dialog.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/template_dialog.cc b/gtk2_ardour/template_dialog.cc index 119ff32a34..cf65ca29b8 100644 --- a/gtk2_ardour/template_dialog.cc +++ b/gtk2_ardour/template_dialog.cc @@ -575,6 +575,7 @@ TemplateManager::import_template_set () FileFilter archive_filter; archive_filter.add_pattern (string_compose(X_("*%1"), ARDOUR::template_archive_suffix)); + archive_filter.add_pattern (X_("*.tar.xz")); // template archives from 5.x archive_filter.set_name (_("Template archives")); dialog.add_filter (archive_filter);