UI: Fix frontend-api event call for adding scenes
Added missing frontend-api event call for AddScene and removed thus obsolete event call in DuplicateSelectedScene.
This commit is contained in:
parent
7df46d4a8e
commit
90a9d1d726
@ -1719,6 +1719,9 @@ void OBSBasic::AddScene(OBSSource source)
|
||||
blog(LOG_INFO, "User added scene '%s'",
|
||||
obs_source_get_name(source));
|
||||
}
|
||||
|
||||
if (api)
|
||||
api->on_event(OBS_FRONTEND_EVENT_SCENE_LIST_CHANGED);
|
||||
}
|
||||
|
||||
void OBSBasic::RemoveScene(OBSSource source)
|
||||
@ -2111,8 +2114,6 @@ void OBSBasic::DuplicateSelectedScene()
|
||||
SetCurrentScene(source, true);
|
||||
obs_scene_release(scene);
|
||||
|
||||
if (api)
|
||||
api->on_event(OBS_FRONTEND_EVENT_SCENE_LIST_CHANGED);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user