refactor(ui): Avoid inconsistent UI in dev mode

To avoid hiding bugs, the UI should behave the
same in dev mode
This commit is contained in:
Lars Toenning
2026-06-26 22:19:35 +02:00
parent 8662cf77ae
commit 3bea016fa3

View File

@@ -29,7 +29,6 @@ namespace swift::gui::components
const bool crashDumpUploadEnabled = m_crashDumpUploadEnabled.getThreadLocal();
ui->cb_CrashDumps->setChecked(crashDumpUploadEnabled);
ui->cb_Agree->setChecked(CBuildConfig::isLocalDeveloperDebugBuild());
connect(ui->cb_CrashDumps, &QCheckBox::toggled, this, &CLegalInfoComponent::onAllowCrashDumps);
}