aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/imagine/Dial.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2018-05-02 11:23:13 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2018-05-09 08:26:57 +0000
commit99928905f2104ff7b7d659f7fd42ffe7d929aeb4 (patch)
tree15c124ac6b8dadc8200d7c6797aec16d4b649e8d /src/imports/controls/imagine/Dial.qml
parent677d9420622fcc9138606260da380d1d794b6685 (diff)
Imagine: use background insets
All others have been updated, except GroupBox that has some strange special handling for positioning the background. Change-Id: Ief5a68cbeedbdc3c66b85e8d03198f70e35aac61 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/controls/imagine/Dial.qml')
-rw-r--r--src/imports/controls/imagine/Dial.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/imports/controls/imagine/Dial.qml b/src/imports/controls/imagine/Dial.qml
index b0f4e5ff..ac7a4645 100644
--- a/src/imports/controls/imagine/Dial.qml
+++ b/src/imports/controls/imagine/Dial.qml
@@ -52,6 +52,11 @@ T.Dial {
rightPadding: background ? background.rightPadding : 0
bottomPadding: background ? background.bottomPadding : 0
+ topInset: background ? -background.topInset || 0 : 0
+ leftInset: background ? -background.leftInset || 0 : 0
+ rightInset: background ? -background.rightInset || 0 : 0
+ bottomInset: background ? -background.bottomInset || 0 : 0
+
handle: Image {
x: background.x + background.width / 2 - handle.width / 2
y: background.y + background.height / 2 - handle.height / 2