aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/nativestyle/controls/DefaultDial.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/nativestyle/controls/DefaultDial.qml')
-rw-r--r--src/imports/nativestyle/controls/DefaultDial.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/nativestyle/controls/DefaultDial.qml b/src/imports/nativestyle/controls/DefaultDial.qml
index 42cc1271..b628ed09 100644
--- a/src/imports/nativestyle/controls/DefaultDial.qml
+++ b/src/imports/nativestyle/controls/DefaultDial.qml
@@ -42,7 +42,7 @@ import QtQuick.NativeStyle as NativeStyle
T.Dial {
id: control
- readonly property bool nativeBackground: background instanceof NativeStyle.StyleItem
+ readonly property bool __nativeBackground: background instanceof NativeStyle.StyleItem
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
implicitContentWidth + leftPadding + rightPadding,
@@ -51,7 +51,7 @@ T.Dial {
implicitContentHeight + topPadding + bottomPadding,
80 /* minimum */ )
- font.pixelSize: nativeBackground ? background.styleFont(control).pixelSize : undefined
+ font.pixelSize: __nativeBackground ? background.styleFont(control).pixelSize : undefined
background: NativeStyle.Dial {
control: control