Index: sources/gui/qml/pages/treatment/sections/TreatmentTime.qml =================================================================== diff -u -r68757118f0b5dc5d831f8330ff3fec40dc461aa9 -rdff9d50ebfa80ec99313586e1d48662b72940d24 --- sources/gui/qml/pages/treatment/sections/TreatmentTime.qml (.../TreatmentTime.qml) (revision 68757118f0b5dc5d831f8330ff3fec40dc461aa9) +++ sources/gui/qml/pages/treatment/sections/TreatmentTime.qml (.../TreatmentTime.qml) (revision dff9d50ebfa80ec99313586e1d48662b72940d24) @@ -54,16 +54,15 @@ circle.showGradient: _root.isRunning circle.runAnimation: _root.isRunning circle.startGradientColor: "#2A5A93" -// circle.opacity: 0 color: _root.isRunning ? Colors.borderButton : "#9B864E" } TimeText { id: _timeText objectName: "timeText" anchors.centerIn : parent + anchors.horizontalCenterOffset: -Variables.defaultMargin seconds : _root.timeTextValue - secondsVisible: _root.isRunning textWeight: Font.Normal secsPixelSize: 35 secondsLeftMargin: 10 @@ -114,17 +113,21 @@ left: _timeTitleRect.left leftMargin: Variables.defaultMargin top: _timeTitleRect.bottom - topMargin: Variables.defaultMargin + topMargin: Variables.defaultMargin * 2 } visible : ! _root.isRunning height : 25 color: "transparent" + image.width: 25 + image.height: 25 + image.anchors.topMargin: 4 imageSource : "qrc:/images/iPauseOrange" text : qsTr("Treatment Paused") textColor : "#FFB836" textfontSize: 26 + textfontWeight: Font.Medium } }