Index: sources/gui/qml/SDCProgressItem.qml =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -r5b9ff6266f7ca8ae9bbd5eace92d6454359791db --- sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision 5b9ff6266f7ca8ae9bbd5eace92d6454359791db) @@ -50,15 +50,15 @@ topMargin : 5 rightMargin : 5 } - width : 30 + width : 40 height: width radius: width Text { id: _percent visible : displayInformation anchors.centerIn: parent color: ! _GuiView.sdIsReady ? Colors.red : _GuiView.sdIsReadOnly ? "gray" : Colors.white text : ! _GuiView.sdIsReady ? qsTr("SD") : _GuiView.sdPercent - font.pixelSize: 12 + font.pixelSize: 18 font.bold: true } ProgressCircle { id: _progressCircle @@ -75,7 +75,7 @@ anchors.horizontalCenter: parent.horizontalCenter color : Colors.white text : Variables.sizeConverted( _GuiView.sdTotal, _root.sizePowers ) - font.pixelSize: 12 + font.pixelSize: 18 font.bold: true }