bugfix(actual): TransitionBegin not triggered after switching scene collections (#250)

This commit is contained in:
Stéphane L 2018-11-07 21:13:13 +01:00
parent 9ad340ab02
commit 03db5bfd8d

View File

@ -117,10 +117,10 @@ void WSEvents::FrontendEventHandler(enum obs_frontend_event event, void* private
owner->OnSceneListChange();
}
else if (event == OBS_FRONTEND_EVENT_SCENE_COLLECTION_CHANGED) {
owner->hookTransitionBeginEvent();
owner->OnSceneCollectionChange();
}
else if (event == OBS_FRONTEND_EVENT_SCENE_COLLECTION_LIST_CHANGED) {
owner->hookTransitionBeginEvent();
owner->OnSceneCollectionListChange();
}
else if (event == OBS_FRONTEND_EVENT_TRANSITION_CHANGED) {