From 08e564dc2e65e3c80b362024ffe5ca89962dc00f Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 24 Aug 2017 02:08:32 +0200 Subject: [PATCH] Fix session-open after selecting new, template, then back --- gtk2_ardour/session_dialog.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gtk2_ardour/session_dialog.cc b/gtk2_ardour/session_dialog.cc index b73514c1aa..172acef3c8 100644 --- a/gtk2_ardour/session_dialog.cc +++ b/gtk2_ardour/session_dialog.cc @@ -265,6 +265,11 @@ SessionDialog::master_channel_count () bool SessionDialog::use_session_template () const { + if (!back_button->sensitive () && !new_only) { + /* open session -- not create a new one */ + return false; + } + if (!load_template_override.empty()) { return true; }