New upstream version 21.0.2+dfsg1

This commit is contained in:
Sebastian Ramacher 2018-02-19 20:54:37 +01:00
parent 1f1bbb3518
commit baafb6325b
706 changed files with 49633 additions and 5044 deletions

View file

@ -425,8 +425,12 @@ void OBSBasic::on_actionExportSceneCollection_triggered()
string file = QT_TO_UTF8(exportFile);
if (!exportFile.isEmpty() && !exportFile.isNull())
if (!exportFile.isEmpty() && !exportFile.isNull()) {
if (QFile::exists(exportFile))
QFile::remove(exportFile);
QFile::copy(path + currentFile + ".json", exportFile);
}
}
void OBSBasic::ChangeSceneCollection()