mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-18 21:38:29 -04:00
frontend: Use OBSBasic::Get() in all places
This reduces duplicated code when getting the OBSBasic context.
This commit is contained in:
@@ -1029,7 +1029,7 @@ void undo_redo(const std::string &data)
|
||||
{
|
||||
OBSDataAutoRelease dat = obs_data_create_from_json(data.c_str());
|
||||
OBSSourceAutoRelease source = obs_get_source_by_uuid(obs_data_get_string(dat, "scene_uuid"));
|
||||
reinterpret_cast<OBSBasic *>(App()->GetMainWindow())->SetCurrentScene(source.Get(), true);
|
||||
OBSBasic::Get()->SetCurrentScene(source.Get(), true);
|
||||
|
||||
obs_scene_load_transform_states(data.c_str());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user