MixerScenes : scenes should report a Change when applied

* this is a convenience so the GUI can show last-selected scene
This commit is contained in:
Ben Loftis 2022-11-08 17:29:13 -06:00
parent e4e773053a
commit f55f0409f8
1 changed files with 2 additions and 0 deletions

View File

@ -146,6 +146,7 @@ MixerScene::apply () const
rv |= recurse_to_master (c, done, ts);
}
Change (); /* EMIT SIGNAL */
return rv;
}
@ -159,6 +160,7 @@ MixerScene::apply (PBD::ControllableSet const& acs, AutomationTypeSet const& ts)
rv |= recurse_to_master (c, done, ts);
}
Change (); /* EMIT SIGNAL */
return rv;
}