From e9d22bdbd607adcd87b06d83e853b7293e06a5f5 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 1 May 2018 12:00:17 -0700 Subject: [PATCH] UI: Also defer first scene collection load Fixes a bug where it would try to save the scene before the scene had been loaded on macOS. --- UI/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 12dc384a2..00e5cdbbd 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -1470,7 +1470,6 @@ void OBSBasic::OBSInit() } #endif - RefreshSceneCollections(); RefreshProfiles(); disableSaving--; @@ -1618,6 +1617,7 @@ void OBSBasic::DeferredLoad(const QString &file, int requeueCount) } Load(QT_TO_UTF8(file)); + RefreshSceneCollections(); } void OBSBasic::UpdateMultiviewProjectorMenu()