From babc0112416033b99ed163d928e07d6c2e6575e9 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Wed, 25 Oct 2023 04:05:31 +0200 Subject: [PATCH] Update MashDesigner.cpp --- src/MashDesigner.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/MashDesigner.cpp b/src/MashDesigner.cpp index d7643f231..501c03b12 100644 --- a/src/MashDesigner.cpp +++ b/src/MashDesigner.cpp @@ -51,7 +51,8 @@ MashDesigner::MashDesigner(QWidget * parent) : QDialog {parent}, // // Here and below, we connect to valueChanged rather than sliderMoved as, otherwise, we don't receive any signal if // the keyboard is used to move the slider. - connect(horizontalSlider_amount, &QAbstractSlider::valueChanged, this, &MashDesigner::updateTempSlider); // Update amount slider when we move temp slider. + connect(horizontalSlider_amount, &QAbstractSlider::valueChanged, this, &MashDesigner::updateTempSlider); + // Update amount slider when we move temp slider. connect(horizontalSlider_temp, &QAbstractSlider::valueChanged, this, &MashDesigner::updateAmtSlider); // Update tun fullness bar when either slider moves. connect(horizontalSlider_amount, &QAbstractSlider::valueChanged, this, &MashDesigner::updateFullness);