UI: Restart program when audio/locale changed

This commit is contained in:
Clayton Groeneveld
2020-02-16 15:15:33 -06:00
parent fd244a6896
commit e0135823ce
6 changed files with 48 additions and 4 deletions

View File

@@ -3882,6 +3882,7 @@ void OBSBasic::closeEvent(QCloseEvent *event)
if (button == QMessageBox::No) {
event->ignore();
restart = false;
return;
}
}
@@ -4012,6 +4013,16 @@ void OBSBasic::on_action_Settings_triggered()
SystemTray(false);
settings_already_executing = false;
if (restart) {
QMessageBox::StandardButton button = OBSMessageBox::question(
this, QTStr("Restart"), QTStr("NeedsRestart"));
if (button == QMessageBox::Yes)
close();
else
restart = false;
}
}
void OBSBasic::on_actionAdvAudioProperties_triggered()