Index: sources/gui/qml/SDCProgressItem.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r4a345704299d15418918ad34eae146c974bad820 --- sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision 4a345704299d15418918ad34eae146c974bad820) @@ -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 Index: sources/gui/qml/main.qml =================================================================== diff -u -r6f66ec07cf63341336ec82f0d26874087007e814 -r4a345704299d15418918ad34eae146c974bad820 --- sources/gui/qml/main.qml (.../main.qml) (revision 6f66ec07cf63341336ec82f0d26874087007e814) +++ sources/gui/qml/main.qml (.../main.qml) (revision 4a345704299d15418918ad34eae146c974bad820) @@ -331,8 +331,10 @@ color : Colors.textMain anchors { top : parent.top - left : parent.left - leftMargin : 615 + topMargin : 10 + + right : parent.right + rightMargin : 75 } horizontalAlignment : Text.Alignleft verticalAlignment : Text.AlignBottom @@ -346,8 +348,10 @@ color : Colors.textMain anchors { top : parent.top - left : parent.left - leftMargin : 800 + topMargin : 10 + + right : parent.right + rightMargin : 25 } horizontalAlignment : Text.Alignleft verticalAlignment : Text.AlignBottom @@ -371,7 +375,7 @@ top : parent.top right : parent.right topMargin : 5 - rightMargin : 250 + rightMargin : 300 } } @@ -381,7 +385,7 @@ top : parent.top right : parent.right topMargin : 5 - rightMargin : 200 + rightMargin : 250 } onDoubleClicked : { if ( _GuiView.dryDemoMode ) {