mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 03:17:39 +01:00
Fully restore ARDOUR::SoloSafeControl state
This is part of a fix for bug #7025 which means the id property of PBD::Controllable is restored and a new id is not generated at first save.
This commit is contained in:
parent
359e63fbe8
commit
3797d8c2f1
1 changed files with 5 additions and 1 deletions
|
|
@ -66,8 +66,12 @@ SoloSafeControl::get_value () const
|
|||
}
|
||||
|
||||
int
|
||||
SoloSafeControl::set_state (XMLNode const & node, int)
|
||||
SoloSafeControl::set_state (XMLNode const & node, int version)
|
||||
{
|
||||
if (SlavableAutomationControl::set_state(node, version)) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
XMLProperty const * prop;
|
||||
|
||||
if ((prop = node.property ("solo-safe")) != 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue