aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols2/windows/SpinBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols2/windows/SpinBox.qml')
-rw-r--r--src/quickcontrols2/windows/SpinBox.qml11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/quickcontrols2/windows/SpinBox.qml b/src/quickcontrols2/windows/SpinBox.qml
index 72309c60cd..2f50f0d5e5 100644
--- a/src/quickcontrols2/windows/SpinBox.qml
+++ b/src/quickcontrols2/windows/SpinBox.qml
@@ -41,12 +41,9 @@ import QtQuick.NativeStyle as NativeStyle
T.SpinBox {
id: control
- property bool __nativeBackground: background instanceof NativeStyle.StyleItem
property bool nativeIndicators: up.indicator.hasOwnProperty("_qt_default")
&& down.indicator.hasOwnProperty("_qt_default")
- font.pixelSize: __nativeBackground ? background.styleFont(control).pixelSize : undefined
-
implicitWidth: Math.max(contentItem.implicitWidth + leftInset + rightInset,
90 /* minimum */ )
implicitHeight: Math.max(contentItem.implicitHeight, up.implicitIndicatorHeight + down.implicitIndicatorHeight)
@@ -54,10 +51,10 @@ T.SpinBox {
spacing: 2
- leftPadding: __nativeBackground ? background.contentPadding.left: 0
- topPadding: __nativeBackground ? background.contentPadding.top: 0
- rightPadding: (__nativeBackground ? background.contentPadding.right : 0) + rightInset
- bottomPadding: __nativeBackground ? background.contentPadding.bottom: 0
+ leftPadding: 0
+ topPadding: 0
+ rightPadding: rightInset
+ bottomPadding: 0
validator: IntValidator {
locale: control.locale.name