From 7de5f54da2e7113cd9756fabce5b38b8d420594b Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 24 May 2025 22:46:21 +0200 Subject: [PATCH] slider: not scale handle margins twice --- .config/quickshell/modules/common/widgets/StyledSlider.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/modules/common/widgets/StyledSlider.qml b/.config/quickshell/modules/common/widgets/StyledSlider.qml index 1deb33412..d1bb1d9ff 100644 --- a/.config/quickshell/modules/common/widgets/StyledSlider.qml +++ b/.config/quickshell/modules/common/widgets/StyledSlider.qml @@ -16,7 +16,7 @@ Slider { property real handleMargins: (slider.pressed ? 0 : 2) * scale property real handleWidth: (slider.pressed ? 3 : 5) * scale property real handleHeight: 44 * scale - property real handleLimit: slider.backgroundDotMargins * scale + property real handleLimit: slider.backgroundDotMargins property real trackHeight: 30 * scale property color highlightColor: Appearance.m3colors.m3primary property color trackColor: Appearance.m3colors.m3secondaryContainer