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.
master
jp9000 2018-05-01 12:00:17 -07:00
parent 8211b9e220
commit e9d22bdbd6
1 changed files with 1 additions and 1 deletions

View File

@ -1470,7 +1470,6 @@ void OBSBasic::OBSInit()
} }
#endif #endif
RefreshSceneCollections();
RefreshProfiles(); RefreshProfiles();
disableSaving--; disableSaving--;
@ -1618,6 +1617,7 @@ void OBSBasic::DeferredLoad(const QString &file, int requeueCount)
} }
Load(QT_TO_UTF8(file)); Load(QT_TO_UTF8(file));
RefreshSceneCollections();
} }
void OBSBasic::UpdateMultiviewProjectorMenu() void OBSBasic::UpdateMultiviewProjectorMenu()