Skip to content

Commit

Permalink
fixed notification setting not getting restored
Browse files Browse the repository at this point in the history
  • Loading branch information
Odizinne committed Aug 23, 2024
1 parent 1f2d8cc commit 44126f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HeadsetControlQt/headsetcontrolqt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void HeadsetControlQt::applySettings()
{
ui->ledBox->setChecked(settings.value("led_state").toBool());
ui->ledBatteryCheckBox->setChecked(settings.value("led_low_battery").toBool());
ui->notificationBatteryCheckBox->setChecked(settings.value("notification_low_battery").toInt());
ui->notificationBatteryCheckBox->setChecked(settings.value("notification_low_battery").toBool());
ui->sidetoneSlider->setValue(settings.value("sidetone").toInt());
ui->themeComboBox->setCurrentIndex(settings.value("theme").toInt());
ui->lowBatteryThresholdSpinBox->setValue(settings.value("low_battery_threshold").toInt());
Expand Down

0 comments on commit 44126f5

Please sign in to comment.