From 442b49e0e1975d51efcef90d10566c90dedbf7e1 Mon Sep 17 00:00:00 2001 From: ATMDA Date: Sat, 15 Nov 2025 11:20:06 -0500 Subject: controlcenter: appearance pane corrections to fp/int values such as scales and border --- components/controls/SpinBoxRow.qml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'components/controls/SpinBoxRow.qml') diff --git a/components/controls/SpinBoxRow.qml b/components/controls/SpinBoxRow.qml index a4441c5..2507b80 100644 --- a/components/controls/SpinBoxRow.qml +++ b/components/controls/SpinBoxRow.qml @@ -13,6 +13,7 @@ StyledRect { required property real value required property real min required property real max + property real step: 1 property var onValueModified: function(value) {} Layout.fillWidth: true @@ -41,6 +42,7 @@ StyledRect { CustomSpinBox { min: root.min max: root.max + step: root.step value: root.value onValueModified: value => { root.onValueModified(value); -- cgit v1.2.3-freya