diff --git a/gtk2_ardour/new_session_dialog.cc b/gtk2_ardour/new_session_dialog.cc index 88944aacb7..8889b9cd62 100644 --- a/gtk2_ardour/new_session_dialog.cc +++ b/gtk2_ardour/new_session_dialog.cc @@ -302,6 +302,7 @@ NewSessionDialog::NewSessionDialog() if (!path.empty()) { m_template->set_current_folder (path + X_("templates/")); } + m_template->add_shortcut_folder(ARDOUR::get_system_data_path() + X_("templates")); m_template->set_title(_("select template")); Gtk::FileFilter* session_filter = manage (new (Gtk::FileFilter)); session_filter->add_pattern(X_("*.ardour")); diff --git a/templates/SConscript b/templates/SConscript index b5410ad7a5..7fa556530b 100644 --- a/templates/SConscript +++ b/templates/SConscript @@ -13,5 +13,5 @@ for template in template_files: Default(template_build) -env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour/templates'), template_build)) +env.Alias('install', env.Install(os.path.join(install_prefix, 'share/ardour2/templates'), template_build)) env.Alias('tarball', env.Distribute (env['DISTTREE'], [ 'SConscript' ] + template_build))