Compare commits

..

2 Commits

Author SHA256 Message Date
3fc795f962 Merge branch 'Oschkarlädzumbrunchein'
haiabubu
2025-01-15 09:49:14 +01:00
416b9cb5b1 Contactperson aligned 2025-01-15 09:48:17 +01:00

View File

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