From ae9972b6beb962e9d02180cc8507d801bac069cd Mon Sep 17 00:00:00 2001 From: Cobalt <60624944+cobalt2727@users.noreply.github.com> Date: Sun, 15 Mar 2026 13:29:30 -0500 Subject: [PATCH] Qt compat fix (again) (#1895) * fix compilation on older QT6 * fix indent my C++ is very rusty * fix indents again * Fixed formatting * fix capitalization error --------- Co-authored-by: OpenSauce04 --- src/citra_qt/configuration/configure_motion_touch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citra_qt/configuration/configure_motion_touch.cpp b/src/citra_qt/configuration/configure_motion_touch.cpp index 4d8e52a30..6d2806897 100644 --- a/src/citra_qt/configuration/configure_motion_touch.cpp +++ b/src/citra_qt/configuration/configure_motion_touch.cpp @@ -231,7 +231,7 @@ void ConfigureMotionTouch::ConnectEvents() { } }); #if QT_VERSION < QT_VERSION_CHECK(6, 7, 0) - connect(ui->touchpad_checkbox, &QCheckBox::StateChanged, this, [this]() { UpdateUiDisplay(); }); + connect(ui->touchpad_checkbox, &QCheckBox::stateChanged, this, [this]() { UpdateUiDisplay(); }); #else connect(ui->touchpad_checkbox, &QCheckBox::checkStateChanged, this, [this]() { UpdateUiDisplay(); });