aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/designer/SliderSpecifics.qml
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2020-04-24 11:38:20 +0200
committerHenning Gruendl <henning.gruendl@qt.io>2020-04-27 11:24:23 +0200
commit80a1ea20d66dea11c74d0a40e1c75b8a782f38a1 (patch)
tree762a4da73a9be13f8b1c649adc94dfe70bdb1de8 /src/imports/controls/designer/SliderSpecifics.qml
parent7d4f8365c1e50759dd3942b006f2ee73ce9cb116 (diff)
QmlDesigner: Update properties in property editor
Add missing and cleanup existing properties in property editor. Task-number: QDS-1502 Change-Id: I33259e244d5a4471e01f7fc1845ad05414367eae Reviewed-by: Mitch Curtis <mitch.curtis@qt.io> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/imports/controls/designer/SliderSpecifics.qml')
-rw-r--r--src/imports/controls/designer/SliderSpecifics.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/imports/controls/designer/SliderSpecifics.qml b/src/imports/controls/designer/SliderSpecifics.qml
index 076d8a1c..d126dd06 100644
--- a/src/imports/controls/designer/SliderSpecifics.qml
+++ b/src/imports/controls/designer/SliderSpecifics.qml
@@ -143,6 +143,20 @@ Column {
Layout.fillWidth: true
}
}
+
+ Label {
+ text: qsTr("Touch drag threshold")
+ tooltip: qsTr("The threshold (in logical pixels) at which a touch drag event will be initiated.")
+ }
+ SecondColumnLayout {
+ SpinBox {
+ minimumValue: 0
+ maximumValue: 10000
+ decimals: 0
+ backendValue: backendValues.touchDragThreshold
+ Layout.fillWidth: true
+ }
+ }
}
}