From e97e10fb5b4a9446972e1b9bc0907afbcad75cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Tue, 14 Nov 2023 16:30:57 +0100 Subject: [PATCH] Make STF slider wider --- stfslider.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stfslider.cpp b/stfslider.cpp index f0fc906..c80c9d9 100644 --- a/stfslider.cpp +++ b/stfslider.cpp @@ -18,13 +18,13 @@ STFSlider::STFSlider(const QColor &color, QWidget *parent) : QWidget(parent) if(color == Qt::white) { - setMaximumHeight(15); - setMinimumHeight(15); + setMaximumHeight(16); + setMinimumHeight(16); } else { - setMaximumHeight(7); - setMinimumHeight(7); + setMaximumHeight(10); + setMinimumHeight(10); } m_blackPoint = 0; m_midPoint = 0.5;