mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
Use correct playlist when loading Ardour5 session
Ardour5 identifies playlists by playlist-name, not by diskstream name.
This commit is contained in:
parent
bf728520ca
commit
d5241c6194
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ Track::set_state (const XMLNode& node, int version)
|
|||
if (version >= 3000 && version < 6000) {
|
||||
if (XMLNode* ds_node = find_named_node (node, "Diskstream")) {
|
||||
std::string name;
|
||||
if (ds_node->get_property ("name", name)) {
|
||||
if (ds_node->get_property ("playlist", name)) {
|
||||
|
||||
ds_node->set_property ("active", true);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue