From 7cf3c264ab05867e855b213fc6c4508c98d9420f Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Mon, 23 Jun 2025 02:35:55 +0200 Subject: [PATCH] fix spinbox looped value --- .config/quickshell/modules/common/widgets/StyledSpinBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/modules/common/widgets/StyledSpinBox.qml b/.config/quickshell/modules/common/widgets/StyledSpinBox.qml index 2f5b44677..9dac2544d 100644 --- a/.config/quickshell/modules/common/widgets/StyledSpinBox.qml +++ b/.config/quickshell/modules/common/widgets/StyledSpinBox.qml @@ -26,7 +26,7 @@ SpinBox { StyledTextInput { id: labelText anchors.centerIn: parent - text: root.displayText + text: root.value // displayText would make the numbers weird like 1,000 instead of 1000 color: Appearance.colors.colOnLayer2 font.pixelSize: Appearance.font.pixelSize.small validator: root.validator