13
0

[Summary] BUG FIXED: New name of a session saved with “save as”, was not stored in the session recent list.

[Reviewed] YPozdnyakov
This commit is contained in:
Valeriy Kamyshniy 2015-04-06 13:04:15 +03:00 committed by Paul Davis
parent 1f98535b52
commit 07c81a763f

View File

@ -4488,5 +4488,11 @@ Session::save_as (SaveAs& saveas)
return -1;
}
if (ARDOUR::Profile->get_trx()) {
// Tracks Live should store name of the "saved as" session in the
// recent session list
store_recent_sessions (_name, _path);
}
return 0;
}