diff --git a/UI/data/locale/en-US.ini b/UI/data/locale/en-US.ini index eaa84d002c58d800e2e96f5fb599de80c1ea72b5..c56b8a192875e185e476e7ebdde430e320e65041 100644 --- a/UI/data/locale/en-US.ini +++ b/UI/data/locale/en-US.ini @@ -143,10 +143,6 @@ BandwidthTest.Region.EU="Europe" BandwidthTest.Region.Asia="Asia" BandwidthTest.Region.Other="Other" -# first time startup -Basic.FirstStartup.RunWizard="Would you like to run the auto-configuration wizard? You can also manually configure your settings by clicking the Settings button in the main window." -Basic.FirstStartup.RunWizard.NoClicked="If you change your mind, you can run the auto-configuration wizard any time again from the Tools menu." - # auto config wizard Basic.AutoConfig="Auto-Configuration Wizard" Basic.AutoConfig.ApplySettings="Apply Settings" diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index 40bf403cfc03ab6ed07b969be7f5ad7a26bc9db5..e77e4099e85afcacef9e610898b936ee98cc39e6 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -1802,23 +1802,9 @@ void OBSBasic::OBSInit() config_save_safe(App()->GlobalConfig(), "tmp", nullptr); } - if (!first_run && !has_last_version && !Active()) { - QString msg; - msg = QTStr("Basic.FirstStartup.RunWizard"); - - QMessageBox::StandardButton button = OBSMessageBox::question( - this, QTStr("Basic.AutoConfig"), msg); - - if (button == QMessageBox::Yes) { - QMetaObject::invokeMethod(this, - "on_autoConfigure_triggered", - Qt::QueuedConnection); - } else { - msg = QTStr("Basic.FirstStartup.RunWizard.NoClicked"); - OBSMessageBox::information( - this, QTStr("Basic.AutoConfig"), msg); - } - } + if (!first_run && !has_last_version && !Active()) + QMetaObject::invokeMethod(this, "on_autoConfigure_triggered", + Qt::QueuedConnection); ToggleMixerLayout(config_get_bool(App()->GlobalConfig(), "BasicWindow", "VerticalVolControl"));