summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-10 06:20:59 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-21 16:56:54 +0200
commitfe6e765b2dcb892a7b52259bac1318e5f8e30a2b (patch)
tree43a15bc1dcb5f193c6d93b40b7aaada687cef0c6
parentshared_translation: Populate combobox enums with macro (diff)
downloadyuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.tar
yuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.tar.gz
yuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.tar.bz2
yuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.tar.lz
yuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.tar.xz
yuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.tar.zst
yuzu-fe6e765b2dcb892a7b52259bac1318e5f8e30a2b.zip
-rw-r--r--src/yuzu/configuration/shared_widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/configuration/shared_widget.cpp b/src/yuzu/configuration/shared_widget.cpp
index 52e617da2..b83150f2b 100644
--- a/src/yuzu/configuration/shared_widget.cpp
+++ b/src/yuzu/configuration/shared_widget.cpp
@@ -194,7 +194,7 @@ QWidget* Widget::CreateSlider(bool reversed, float multiplier, const QString& fo
if (!Settings::IsConfiguringGlobal()) {
restore_func = [this]() { slider->setValue(std::stoi(setting.ToStringGlobal())); };
- QObject::connect(slider, &QAbstractSlider::sliderReleased, [touch]() { touch(); });
+ QObject::connect(slider, &QAbstractSlider::actionTriggered, [touch]() { touch(); });
}
return container;