Index: sources/gui/qml/components/ProgressCircle.qml =================================================================== diff -u -rcd7de5f6d239a11615ba8c6c03339a10996486ca -r34471900489397f483e052870ddc46059cef49fb --- sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision cd7de5f6d239a11615ba8c6c03339a10996486ca) +++ sources/gui/qml/components/ProgressCircle.qml (.../ProgressCircle.qml) (revision 34471900489397f483e052870ddc46059cef49fb) @@ -27,8 +27,8 @@ property int maximum : 0 property int value : minimum - width : parent.width - height : parent.height + width : _circle.width + height : _circle.height QtObject { id: _private property int value: ((360 * (_root.value - _root.minimum)) / (_root.maximum - _root.minimum))