forked from qt-creator/qt-creator
QmlDesigner.propertyEditor: adjusting alignmet (layout)
This commit is contained in:
@@ -18,6 +18,8 @@ GroupBox {
|
|||||||
DoubleSpinBox {
|
DoubleSpinBox {
|
||||||
id: XSpinBox;
|
id: XSpinBox;
|
||||||
text: "X"
|
text: "X"
|
||||||
|
alignRight: false
|
||||||
|
spacing: 4
|
||||||
singleStep: 1;
|
singleStep: 1;
|
||||||
objectName: "XSpinBox";
|
objectName: "XSpinBox";
|
||||||
enabled: anchorBackend.hasParent;
|
enabled: anchorBackend.hasParent;
|
||||||
@@ -31,6 +33,8 @@ GroupBox {
|
|||||||
id: YSpinBox;
|
id: YSpinBox;
|
||||||
singleStep: 1;
|
singleStep: 1;
|
||||||
text: "Y"
|
text: "Y"
|
||||||
|
alignRight: false
|
||||||
|
spacing: 4
|
||||||
objectName: "YSpinBox";
|
objectName: "YSpinBox";
|
||||||
backendValue: backendValues.y
|
backendValue: backendValues.y
|
||||||
enabled: anchorBackend.hasParent;
|
enabled: anchorBackend.hasParent;
|
||||||
@@ -53,6 +57,8 @@ GroupBox {
|
|||||||
DoubleSpinBox {
|
DoubleSpinBox {
|
||||||
id: WidthSpinBox;
|
id: WidthSpinBox;
|
||||||
text: "W"
|
text: "W"
|
||||||
|
alignRight: false
|
||||||
|
spacing: 4
|
||||||
singleStep: 1;
|
singleStep: 1;
|
||||||
objectName: "WidthSpinBox";
|
objectName: "WidthSpinBox";
|
||||||
backendValue: backendValues.width
|
backendValue: backendValues.width
|
||||||
@@ -64,6 +70,8 @@ GroupBox {
|
|||||||
DoubleSpinBox {
|
DoubleSpinBox {
|
||||||
id: HeightSpinBox;
|
id: HeightSpinBox;
|
||||||
text: "H"
|
text: "H"
|
||||||
|
alignRight: false
|
||||||
|
spacing: 4
|
||||||
singleStep: 1;
|
singleStep: 1;
|
||||||
objectName: "HeightSpinBox";
|
objectName: "HeightSpinBox";
|
||||||
backendValue: backendValues.height
|
backendValue: backendValues.height
|
||||||
|
|||||||
Reference in New Issue
Block a user