Index: sources/gui/qml/SDCProgressItem.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -raff2e3d6f0cf3827ed741e8dcd278d3e4008945a --- sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision aff2e3d6f0cf3827ed741e8dcd278d3e4008945a) @@ -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