Index: sources/gui/qml/pages/posttreatment/PostTreatmentReview.qml =================================================================== diff -u -rb0ad6789ac542b1c24db1d89af3d4e1411a4d4f1 -ref7ded49d368a1002b73819d7d71673519b1ae29 --- sources/gui/qml/pages/posttreatment/PostTreatmentReview.qml (.../PostTreatmentReview.qml) (revision b0ad6789ac542b1c24db1d89af3d4e1411a4d4f1) +++ sources/gui/qml/pages/posttreatment/PostTreatmentReview.qml (.../PostTreatmentReview.qml) (revision ef7ded49d368a1002b73819d7d71673519b1ae29) @@ -34,11 +34,14 @@ spacing : Variables.defaultMargin height : 75 - ScrollBar { - anchors.fill: _flickable - flickable : _flickable - color : Colors.backgroundDialog - } + anchors { + top : header.bottom + topMargin : Variables.defaultMargin / 2 + left : parent.left + leftMargin : Variables.defaultMargin * 4 + right : parent.right + rightMargin : Variables.defaultMargin * 4 + } Item { id: _legend width: _root.columnWidth @@ -63,7 +66,6 @@ } } - Item { id: _qrContainer width: _root.columnWidth height: _topRow.height @@ -259,8 +261,8 @@ label : [ qsTr("Treatment Start Date, Time") , qsTr("Treatment End Date, Time") ] - initial : [ Qt.formatDateTime(new Date(vPostTreatmentAdjustmentTreatmentLog.treatmentStartEpoch), "yyyy/MM/dd, HH:mm") , - Qt.formatDateTime(new Date(vPostTreatmentAdjustmentTreatmentLog.treatmentEndEpoch) , "yyyy/MM/dd, HH:mm") ] + initial : [ vPostTreatmentAdjustmentTreatmentLog.treatmentStartEpoch, + vPostTreatmentAdjustmentTreatmentLog.treatmentEndEpoch ] actual : [ "" , "" ] units : [ "" , ""]