From 91fd927a8010cf67ba23f2d0a76aaf5d0e056a8d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 29 Oct 2019 18:09:55 -0600 Subject: [PATCH] fix appearance of SessionDialog presented after Session > New Needed to be told "require_new" to make sure the correct display is shown --- gtk2_ardour/ardour_ui_session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ardour_ui_session.cc b/gtk2_ardour/ardour_ui_session.cc index c88ba0adcd..f6c4ac4568 100644 --- a/gtk2_ardour/ardour_ui_session.cc +++ b/gtk2_ardour/ardour_ui_session.cc @@ -150,7 +150,7 @@ ARDOUR_UI::start_session_load () } } - SessionDialog* session_dialog = new SessionDialog (false, string(), Config->get_default_session_parent_dir(), string(), true); + SessionDialog* session_dialog = new SessionDialog (true, string(), Config->get_default_session_parent_dir(), string(), true); session_dialog->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::session_dialog_response_handler), session_dialog)); session_dialog->present (); }