Skip to content

Commit

Permalink
Fix wrong toggle settings name
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro-Beirao committed Jun 6, 2024
1 parent ead0003 commit 2b2eacd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ void MainWindow::saveSelected()
// Bottom
settings->setValue("fast", ui->toggle1_checkBox->isChecked());
settings->setValue("nomo", ui->toggle2_checkBox->isChecked());
settings->setValue("solonet", ui->toggle3_checkBox->isChecked());
settings->setValue("respawn", ui->toggle4_checkBox->isChecked());
settings->setValue("respawn", ui->toggle3_checkBox->isChecked());
settings->setValue("solonet", ui->toggle4_checkBox->isChecked());
settings->setValue("fullscreen", ui->fullscreen_checkBox->isChecked());
settings->setValue("geom", ui->resolution_comboBox->currentIndex());
settings->setValue("hud", ui->hud_lineEdit->text());
Expand Down

0 comments on commit 2b2eacd

Please sign in to comment.