mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-19 09:41:32 +08:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user