From 2a53da7b168f012d95d7fb0a3ef4ccec7db3370e Mon Sep 17 00:00:00 2001 From: collecting Date: Tue, 7 Oct 2025 06:51:58 +0000 Subject: [PATCH] fix: checkStateChanged --- src/citron/configuration/shared_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citron/configuration/shared_widget.cpp b/src/citron/configuration/shared_widget.cpp index 34c50d31e..4d4048145 100644 --- a/src/citron/configuration/shared_widget.cpp +++ b/src/citron/configuration/shared_widget.cpp @@ -708,7 +708,7 @@ void Widget::SetupComponent(const QString& label, std::function& load_fu restore_func(); } }; - connect(checkbox, &QCheckBox::stateChanged, reset); + connect(checkbox, &QCheckBox::checkStateChanged, reset); reset(checkbox->checkState()); } }