Index: sources/gui/qml/SDCProgressItem.qml =================================================================== diff -u -r2e15014653a2e70fba8c1bddb20c309f0d93b2be -r77eb61d4dc3dd02919c98ae1a2ad72afcdeaef61 --- sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision 2e15014653a2e70fba8c1bddb20c309f0d93b2be) +++ sources/gui/qml/SDCProgressItem.qml (.../SDCProgressItem.qml) (revision 77eb61d4dc3dd02919c98ae1a2ad72afcdeaef61) @@ -39,7 +39,11 @@ readonly property alias total : _progressCircle.maximum readonly property alias avail : _progressCircle.value readonly property alias percent : _percent.text - property alias thickness : _progressCircle.thickness + property alias percentFontSize : _percent.font.pixelSize + property alias totalFontSize : _totalText.font.pixelSize + property alias thickness : _progressCircle.thickness + property alias circleShadowColor : _progressCircle.circleShadowColor + property color textColor : Colors.white property bool displayInformation : true @@ -56,7 +60,7 @@ Text { id: _percent visible : displayInformation anchors.centerIn: parent - color: ! _GuiView.sdIsReady ? Colors.red : _GuiView.sdIsReadOnly ? "gray" : Colors.white + color: ! _GuiView.sdIsReady ? Colors.red : _GuiView.sdIsReadOnly ? "gray" : _root.textColor text : ! _GuiView.sdIsReady ? qsTr("SD") : _GuiView.sdPercent font.pixelSize: 12 font.bold: true @@ -73,7 +77,7 @@ visible : _GuiView.sdIsReady && displayInformation anchors.top: parent.bottom anchors.horizontalCenter: parent.horizontalCenter - color : Colors.white + color : _root.textColor text : Variables.sizeConverted( _GuiView.sdTotal, _root.sizePowers ) font.pixelSize: 12 font.bold: true