mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 00:56:33 +01:00
Fix mute state on loading 2.X sessions (#3829).
git-svn-id: svn://localhost/ardour2/branches/3.0@9093 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a6ab93be24
commit
105fec6858
1 changed files with 3 additions and 2 deletions
|
|
@ -2078,7 +2078,7 @@ Route::_set_state_2X (const XMLNode& node, int version)
|
||||||
bool first = true;
|
bool first = true;
|
||||||
bool muted = string_is_affirmative (prop->value());
|
bool muted = string_is_affirmative (prop->value());
|
||||||
|
|
||||||
if (muted){
|
if (muted) {
|
||||||
|
|
||||||
string mute_point;
|
string mute_point;
|
||||||
|
|
||||||
|
|
@ -2129,6 +2129,7 @@ Route::_set_state_2X (const XMLNode& node, int version)
|
||||||
}
|
}
|
||||||
|
|
||||||
_mute_master->set_mute_points (mute_point);
|
_mute_master->set_mute_points (mute_point);
|
||||||
|
_mute_master->set_muted_by_self (true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue