From 00a7dfd16d4484064bd0e5601720993d0525995a Mon Sep 17 00:00:00 2001 From: Konstantin Ritt Date: Mon, 26 Dec 2016 11:44:07 +0400 Subject: Material|SpinBox: Fix trivial C&P typo Change-Id: I8bdd973f69ae246220b58a312f5d82d9134f35f6 Reviewed-by: J-P Nurmi --- src/imports/controls/material/SpinBox.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/imports/controls/material/SpinBox.qml b/src/imports/controls/material/SpinBox.qml index 110032be..8a3b0932 100644 --- a/src/imports/controls/material/SpinBox.qml +++ b/src/imports/controls/material/SpinBox.qml @@ -125,7 +125,7 @@ T.SpinBox { Rectangle { x: (parent.width - width) / 2 y: (parent.height - height) / 2 - width: Math.min(parent.width / 3, parent.width / 3) + width: Math.min(parent.width / 3, parent.height / 3) height: 2 color: enabled ? control.Material.foreground : control.Material.spinBoxDisabledIconColor } @@ -133,7 +133,7 @@ T.SpinBox { x: (parent.width - width) / 2 y: (parent.height - height) / 2 width: 2 - height: Math.min(parent.width / 3, parent.width / 3) + height: Math.min(parent.width / 3, parent.height / 3) color: enabled ? control.Material.foreground : control.Material.spinBoxDisabledIconColor } } -- cgit v1.2.3