summaryrefslogtreecommitdiff
path: root/share/qtcreator
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-02-04 13:01:43 +0100
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-02-04 13:08:07 +0100
commitce734c6326f22db69a0d65d80943271aca8de65c (patch)
treef4e730af8280fe05309300d78cde577e9e4aae67 /share/qtcreator
parent818b9979993a779173a4b55a851af4d4d303dc54 (diff)
downloadqt-creator-ce734c6326f22db69a0d65d80943271aca8de65c.tar.gz
QmlDesigner.propertyEditor: adjusting alignmet (layout)
Diffstat (limited to 'share/qtcreator')
-rw-r--r--share/qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml
index f22f07e4e9..fa22cdd412 100644
--- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml
+++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Geometry.qml
@@ -18,6 +18,8 @@ GroupBox {
DoubleSpinBox {
id: XSpinBox;
text: "X"
+ alignRight: false
+ spacing: 4
singleStep: 1;
objectName: "XSpinBox";
enabled: anchorBackend.hasParent;
@@ -31,6 +33,8 @@ GroupBox {
id: YSpinBox;
singleStep: 1;
text: "Y"
+ alignRight: false
+ spacing: 4
objectName: "YSpinBox";
backendValue: backendValues.y
enabled: anchorBackend.hasParent;
@@ -53,6 +57,8 @@ GroupBox {
DoubleSpinBox {
id: WidthSpinBox;
text: "W"
+ alignRight: false
+ spacing: 4
singleStep: 1;
objectName: "WidthSpinBox";
backendValue: backendValues.width
@@ -64,6 +70,8 @@ GroupBox {
DoubleSpinBox {
id: HeightSpinBox;
text: "H"
+ alignRight: false
+ spacing: 4
singleStep: 1;
objectName: "HeightSpinBox";
backendValue: backendValues.height