Contactperson aligned

This commit is contained in:
2025-01-15 09:48:17 +01:00
parent 80a269a729
commit 416b9cb5b1

View File

@@ -147,8 +147,8 @@ GridLayout
text: qsTr("Name") text: qsTr("Name")
width: 175 width: 175
font.bold: true font.bold: true
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignLeft
color: "yellow" color: "black"
} }
Text Text
@@ -157,8 +157,8 @@ GridLayout
text: qsTr("Telefon") text: qsTr("Telefon")
width: 100 width: 100
font.bold: true font.bold: true
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignLeft
color: "yellow" color: "black"
} }
Text Text
@@ -167,8 +167,8 @@ GridLayout
text: qsTr("Position") text: qsTr("Position")
width: 150 width: 150
font.bold: true font.bold: true
horizontalAlignment: Text.AlignHCenter horizontalAlignment: Text.AlignLeft
color: "yellow" color: "black"
} }
} }
} }
@@ -197,21 +197,24 @@ GridLayout
Row Row
{ {
spacing: 9 //spacing: 9
Text Text
{ {
text: model.name text: model.name
width: 175 width: 175
horizontalAlignment: Text.AlignLeft
} }
Text Text
{ {
text: model.phone text: model.phone
width: 100 width: 100
horizontalAlignment: Text.AlignLeft
} }
Text Text
{ {
text: model.posizion text: model.posizion
width: 150 width: 150
horizontalAlignment: Text.AlignLeft
} }
} }
} }