diff --git a/Gui/ObjectAddOnContactPerson.qml b/Gui/ObjectAddOnContactPerson.qml index 7740599..17f0dd2 100644 --- a/Gui/ObjectAddOnContactPerson.qml +++ b/Gui/ObjectAddOnContactPerson.qml @@ -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 } } }