Don't unload session with Session -> Open -> Cancel, Fixes #6568

This commit is contained in:
Tim Mayberry
2015-09-09 09:55:18 +10:00
parent 54d216429c
commit 6e944121f6

View File

@@ -1821,6 +1821,10 @@ ARDOUR_UI::open_session ()
int response = open_session_selector.run();
open_session_selector.hide ();
if (response == Gtk::RESPONSE_CANCEL) {
return;
}
string session_path = open_session_selector.get_filename();
string path, name;
bool isnew;