aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/Dial.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/controls/Dial.qml')
-rw-r--r--src/imports/controls/Dial.qml18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/imports/controls/Dial.qml b/src/imports/controls/Dial.qml
index 9068464f..b6752d55 100644
--- a/src/imports/controls/Dial.qml
+++ b/src/imports/controls/Dial.qml
@@ -45,31 +45,27 @@ T.Dial {
//! [background]
background: Rectangle {
+ x: control.width / 2 - width / 2
+ y: control.height / 2 - height / 2
+ width: Math.max(64, Math.min(control.width, control.height))
+ height: Math.max(64, Math.min(control.width, control.height))
radius: width / 2
border.color: "#353637"
-
- Text {
- text: control.position.toFixed(1)
- color: "#353637"
- font.pixelSize: 60
- x: parent.width / 2 - width / 2
- y: parent.height / 2 - height / 2
- }
}
//! [background]
//! [handle]
handle: Image {
id: handleItem
- x: background.width / 2 - handle.width / 2
- y: background.height / 2 - handle.height / 2
+ x: background.x + background.width / 2 - handle.width / 2
+ y: background.y + background.height / 2 - handle.height / 2
width: 14
height: 10
source: "qrc:/qt-project.org/imports/Qt/labs/controls/images/dial-indicator.png"
antialiasing: true
transform: [
Translate {
- y: -background.height * 0.4
+ y: -background.height * 0.4 + handle.height / 2
},
Rotation {
angle: control.angle