mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
shared_widget: Use actionTriggered for user input signals
Clicking the slider without directly interacting with the slider handle would change the value, but not trigger the restore button.
This commit is contained in:
parent
47d870b11f
commit
fe6e765b2d
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ QWidget* Widget::CreateSlider(bool reversed, float multiplier, const QString& fo
|
||||||
if (!Settings::IsConfiguringGlobal()) {
|
if (!Settings::IsConfiguringGlobal()) {
|
||||||
restore_func = [this]() { slider->setValue(std::stoi(setting.ToStringGlobal())); };
|
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;
|
return container;
|
||||||
|
|
Loading…
Reference in a new issue