diff options
author | Thomas Hartmann <thomas.hartmann@qt.io> | 2019-06-05 16:28:52 +0200 |
---|---|---|
committer | Thomas Hartmann <thomas.hartmann@qt.io> | 2019-06-05 14:58:54 +0000 |
commit | 029884c80eefa0dc8fc0c4d67c4dff34051afd5b (patch) | |
tree | 71ad95f858dd559285a83411e727b3d6feae56c6 /share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick | |
parent | a18d3d1f9a3f14dedb140b1626f553c974e6190f (diff) | |
download | qt-creator-029884c80eefa0dc8fc0c4d67c4dff34051afd5b.tar.gz |
QmlDesigner: Use studio controls for property editor
* CheckBox
* ComboBox
* LineEdit
Adjusting some details in property editor.
Change-Id: I8f9d6ef87c187f5a3be7c5fb368a1813e6dba92c
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick')
-rw-r--r-- | share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml index 143f950b38..6570497297 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/RectangleSpecifics.qml @@ -73,7 +73,7 @@ Column { SpinBox { backendValue: backendValues.border_width hasSlider: true - Layout.preferredWidth: 80 + Layout.preferredWidth: 120 } ExpandingSpacer { @@ -86,7 +86,7 @@ Column { SpinBox { backendValue: backendValues.radius hasSlider: true - Layout.preferredWidth: 80 + Layout.preferredWidth: 120 minimumValue: 0 maximumValue: Math.min(backendValues.height.value, backendValues.width.value) / 2 } |