Index: sources/gui/qml/components/ConfirmTreatmentTableEntry.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -re568c0be76dcf80834f68b30d7291f45172b6f69 --- sources/gui/qml/components/ConfirmTreatmentTableEntry.qml (.../ConfirmTreatmentTableEntry.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/components/ConfirmTreatmentTableEntry.qml (.../ConfirmTreatmentTableEntry.qml) (revision e568c0be76dcf80834f68b30d7291f45172b6f69) @@ -51,8 +51,12 @@ objectName: key + index color: Colors.textMain text: key - anchors.left: parent.left - anchors.verticalCenter: _root.verticalCenter + anchors { + left: _line.left + leftMargin: 15 + bottom: _line.top + bottomMargin: Variables.spaceBetweenLineAndText + } font.pixelSize: Fonts.fontPixelCreateTreatmentTable } @@ -61,9 +65,13 @@ objectName: value + index color: Colors.textMain text: value - anchors.left: _line.horizontalCenter - anchors.verticalCenter: _root.verticalCenter - anchors.leftMargin: 3*Variables.createTreatmentMargin + anchors { + right: _line.right + rightMargin: 15 + bottom: _line.top + bottomMargin: Variables.spaceBetweenLineAndText + } + font.pixelSize: Fonts.fontPixelCreateTreatmentTable } }