Index: sources/gui/qml/components/ConfirmTreatmentTable.qml =================================================================== diff -u -ra5760947d3ed0d2748ba023a1c25e3c6aa0b1de1 -r2ad0fc5c1215088ee0e4ea7f9b2bc367c4ed2fd9 --- sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision a5760947d3ed0d2748ba023a1c25e3c6aa0b1de1) +++ sources/gui/qml/components/ConfirmTreatmentTable.qml (.../ConfirmTreatmentTable.qml) (revision 2ad0fc5c1215088ee0e4ea7f9b2bc367c4ed2fd9) @@ -34,37 +34,16 @@ color: Colors.transparent radius: Variables.dialogRadius - Rectangle { - id: _treatment_profile_id - objectName: _root.objectName + "_treatment_profile_id" + Text { + id: _treatment_profile_name + objectName: _root.objectName + "_treatment_profile_name" height: 40 width: height anchors.top: _header.top anchors.left: _header.left anchors.topMargin: Variables.createTreatmentMargin anchors.leftMargin: Variables.createTreatmentMargin - color: Colors.createTrProfileID - radius: Variables.dialogRadius - - Text { - id: _treatment_profile_id_text - objectName: _treatment_profile_id.objectName + "_treatment_profile_id_text" - color: Colors.backgroundDialog - text: "1" - font.pixelSize: Fonts.fontPixelTextRectTitle - anchors.centerIn: _treatment_profile_id - font.bold: true - } - } - - Text { - id: _treatment_profile_name - objectName: _root.objectName + "_treatment_profile_name" - anchors.bottom: _treatment_profile_id.bottom - anchors.left: _treatment_profile_id.right - anchors.topMargin: Variables.createTreatmentMargin - anchors.leftMargin: 20 - text: qsTr("New Treatment") + text: qsTr("Custom Treatment") color: Colors.textMain font.pixelSize: Fonts.fontPixelCreateTreatment }