Skip to content
Snippets Groups Projects
Commit bbdceed3 authored by Christiaan Janssen's avatar Christiaan Janssen
Browse files

QmlDesigner.PropertyEditor: adjusting label sizes

parent b03b4841
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,5 @@ QLabel {
font.bold: true;
alignment: "Qt::AlignRight | Qt::AlignVCenter"
fixedWidth: 90
fixedWidth: 98
}
......@@ -9,6 +9,8 @@ GroupBox {
id: layout;
enabled: anchorBackend.hasParent;
property var targetLabelWidth: 90 - 20 - 26
layout: VerticalLayout {
QLabel {
text: "Anchors"
......@@ -40,7 +42,7 @@ GroupBox {
Label {
text: "Target"
fixedWidth: 90 - 20 - 32
fixedWidth: targetLabelWidth
}
SiblingComboBox {
itemNode: anchorBackend.itemNode
......@@ -87,7 +89,7 @@ GroupBox {
Label {
text: "Target"
fixedWidth: 90 - 20 - 32
fixedWidth: targetLabelWidth
}
SiblingComboBox {
itemNode: anchorBackend.itemNode
......@@ -134,7 +136,7 @@ GroupBox {
Label {
text: "Target"
fixedWidth: 90 - 20 - 32
fixedWidth: targetLabelWidth
}
SiblingComboBox {
itemNode: anchorBackend.itemNode
......@@ -180,7 +182,7 @@ GroupBox {
Label {
text: "Target"
fixedWidth: 90 - 20 - 32
fixedWidth: targetLabelWidth
}
SiblingComboBox {
itemNode: anchorBackend.itemNode
......@@ -226,7 +228,7 @@ GroupBox {
Label {
text: "Target"
fixedWidth: 90 - 20 - 32
fixedWidth: targetLabelWidth
}
SiblingComboBox {
itemNode: anchorBackend.itemNode
......@@ -272,7 +274,7 @@ GroupBox {
Label {
text: "Target"
fixedWidth: 90 - 20 - 32
fixedWidth: targetLabelWidth
}
SiblingComboBox {
itemNode: anchorBackend.itemNode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment