Index: sources/gui/qml/pages/TreatmentFlowBase.qml =================================================================== diff -u -rea616a4cf7cfe191c33e66119cd5a71b5772192a -rf0cbe4cfc8a5e6e7aa58a8eeaab2d838cf2ff957 --- sources/gui/qml/pages/TreatmentFlowBase.qml (.../TreatmentFlowBase.qml) (revision ea616a4cf7cfe191c33e66119cd5a71b5772192a) +++ sources/gui/qml/pages/TreatmentFlowBase.qml (.../TreatmentFlowBase.qml) (revision f0cbe4cfc8a5e6e7aa58a8eeaab2d838cf2ff957) @@ -50,7 +50,11 @@ property bool hasCheckList : false readonly property alias checkList : _checkListLoader.item property var checkListStepNames : [] - property int checkListCompleteMargin : 50 + property int checkListCompleteMargin : 50 + property bool checkListTimeVisible : false + property int checkListTimeSeconds : 0 + + property string completeText : "" property bool isComplete : false @@ -139,6 +143,8 @@ completeText : _root.completeText stepNames : _root.checkListStepNames completeMargin : _root.checkListCompleteMargin + timeVisible : _root.checkListTimeVisible + timeSeconds : _root.checkListTimeSeconds } }