Index: sources/gui/qml/pages/treatment/TreatmentConfirm.qml =================================================================== diff -u -r542278273f3d13ad5fb5ba8916178d747c78fe77 -r074b32b5cc08f41f2d9ce0d021f2151b76bba5ad --- sources/gui/qml/pages/treatment/TreatmentConfirm.qml (.../TreatmentConfirm.qml) (revision 542278273f3d13ad5fb5ba8916178d747c78fe77) +++ sources/gui/qml/pages/treatment/TreatmentConfirm.qml (.../TreatmentConfirm.qml) (revision 074b32b5cc08f41f2d9ce0d021f2151b76bba5ad) @@ -67,7 +67,12 @@ color: Colors.textMain font.pixelSize: Fonts.fontPixelTitle } + // insert the treatment information table here + ConfirmTreatmentTable { + anchors.horizontalCenter: parent.horizontalCenter + } + TouchRect { id : _continueRect objectName: "_continueRect" anchors.horizontalCenter: parent.horizontalCenter @@ -76,6 +81,13 @@ _root.clickedConfirm() } } + + Rectangle { + id: _spacer + height: 75 + width: parent.width + color: "transparent" + } } }