Index: sources/gui/qml/SDCProgressItem.qml =================================================================== diff -u -rbcb92b3c14c59f0761c366501a0e3262e9a061f9 -rc47d6680e0514292d7cc9b59ba0361aa8f335927 --- sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision bcb92b3c14c59f0761c366501a0e3262e9a061f9) +++ sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision c47d6680e0514292d7cc9b59ba0361aa8f335927) @@ -35,7 +35,6 @@ readonly property int sizePowers : 1000000 - readonly property alias totalText : _totalText.text readonly property alias total : _progressCircle.maximum readonly property alias avail : _progressCircle.value readonly property alias percent : _percent.text @@ -69,15 +68,6 @@ value : _GuiView.sdAvail / sizePowers // convert to MB since the value in byte is too big for ProgressCircle. color : ! _GuiView.sdIsReady ? "red" : _GuiView.sdIsReadOnly ? "gray" : _GuiView.sdIsLow ? Colors.red : "green" } - Text { id: _totalText - visible : _GuiView.sdIsReady && displayInformation - anchors.top: parent.bottom - anchors.horizontalCenter: parent.horizontalCenter - color : Colors.white - text : Variables.sizeConverted( _GuiView.sdTotal, _root.sizePowers ) - font.pixelSize: 12 - font.bold: true - } MouseArea { id: _mouseArea anchors.fill : parent