UI: Fix memory leak

This commit is contained in:
Richard Stanway
2020-03-19 15:38:09 +01:00
parent 8ecfb405ce
commit 4570fcbc72

View File

@@ -392,6 +392,7 @@ void OBSBasic::on_actionImportSceneCollection_triggered()
OBSImporter *imp;
imp = new OBSImporter(this);
imp->exec();
delete imp;
RefreshSceneCollections();
}