mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Don't unload session with Session -> Open -> Cancel, Fixes #6568
This commit is contained in:
parent
54d216429c
commit
6e944121f6
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue