From 6da742ba02ccc6e9f626f1c46bb1651a018e1f23 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 3 Jan 2016 18:21:44 -0800 Subject: [PATCH] UI: Fix bug where default scene would not be added to list --- obs/window-basic-main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 3c3b092b..d0994ac6 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -407,6 +407,7 @@ void OBSBasic::CreateDefaultScene(bool firstStart) CreateFirstRunSources(); obs_set_output_source(0, obs_scene_get_source(scene)); + AddScene(obs_scene_get_source(scene)); obs_scene_release(scene); disableSaving--; -- GitLab