From ad284ae9839c02f36fa1ddd31f7529010e1a4b74 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Tue, 27 May 2025 20:57:40 +0300 Subject: [PATCH] fixup --- src/qt_gui/settings_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp index e9876c8b6..2e868c096 100644 --- a/src/qt_gui/settings_dialog.cpp +++ b/src/qt_gui/settings_dialog.cpp @@ -240,7 +240,7 @@ SettingsDialog::SettingsDialog(std::shared_ptr gui_settings, connect(ui->showBackgroundImageCheckBox, &QCheckBox::stateChanged, this, [this](int state) { #else connect(ui->showBackgroundImageCheckBox, &QCheckBox::checkStateChanged, this, - [](Qt::CheckState state) { + [this](Qt::CheckState state) { #endif m_gui_settings->SetValue(gui::gl_showBackgroundImage, state == Qt::Checked); });