From 416b9cb5b1d30fc90fed4f289ade76f2c0a3c6fd46669cb349a61b1ec1e91ef4 Mon Sep 17 00:00:00 2001 From: Marco Gatzen Date: Wed, 15 Jan 2025 09:48:17 +0100 Subject: [PATCH] Contactperson aligned --- Gui/ObjectAddOnContactPerson.qml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Gui/ObjectAddOnContactPerson.qml b/Gui/ObjectAddOnContactPerson.qml index 7b39aaf..7e4824c 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" } } } @@ -197,21 +197,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 } } }