UI: Add OBSBasic::BackupScene() with scene param

Just a little inline helper that automatically converts it to a source
so callers don't have to manually do this each time.
This commit is contained in:
jp9000
2021-05-21 18:13:19 -07:00
parent ac59d51724
commit 008a7372d3
+6
View File
@@ -864,6 +864,12 @@ public:
void CreateSceneUndoRedoAction(const QString &action_name,
OBSData undo_data, OBSData redo_data);
static inline OBSData BackupScene(obs_scene_t *scene)
{
obs_source_t *source = obs_scene_get_source(scene);
return BackupScene(source);
}
void CreateFilterPasteUndoRedoAction(const QString &text,
obs_source_t *source,
obs_data_array_t *undo_array,