Skip to content

Commit aafefb3

Browse files
committed
MonitorSlider: Set float step size to 0.1
1 parent 69909ff commit aafefb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal/MonitorSlider.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Slider {
2525
readonly property color currentPositionBorderColor: control.pressed ? Qt.rgba(0.37, 0.56, 0.79, 1) : (hoverHandler.hovered ? Qt.darker(positionBorderColor, 1.28) : positionBorderColor)
2626
}
2727

28-
stepSize: discrete ? 1 : 0
28+
stepSize: discrete ? 1 : 0.1
2929
snapMode: Slider.SnapAlways
3030
implicitWidth: 119
3131
implicitHeight: 16

0 commit comments

Comments
 (0)