Locations: provide a signal for when a single Location's Cue-ID changes
This commit is contained in:
parent
85f05eaca5
commit
4bc3230756
@ -148,6 +148,7 @@ public:
|
||||
PBD::Signal0<void> Changed;
|
||||
|
||||
PBD::Signal0<void> NameChanged;
|
||||
PBD::Signal0<void> CueChanged;
|
||||
PBD::Signal0<void> EndChanged;
|
||||
PBD::Signal0<void> StartChanged;
|
||||
PBD::Signal0<void> FlagsChanged;
|
||||
|
@ -441,7 +441,8 @@ Location::set_cue_id (int32_t cue_id)
|
||||
}
|
||||
if (_cue != cue_id) {
|
||||
_cue = cue_id;
|
||||
cue_change (this);
|
||||
cue_change (this); /* EMIT SIGNAL */
|
||||
CueChanged (); /* EMIT SIGNAL */
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user