diff --git a/modules/gui/qt/widgets/qml/RoundImage.qml b/modules/gui/qt/widgets/qml/RoundImage.qml index 70792e2348e8e48ca175ae8e586e68f26593fa65..f3ab8812671d7018d6947f33ab8711d7f6eaa13c 100644 --- a/modules/gui/qt/widgets/qml/RoundImage.qml +++ b/modules/gui/qt/widgets/qml/RoundImage.qml @@ -48,7 +48,7 @@ Item { // when the shader has custom softedge support (`CUSTOM_SOFTEDGE`), currently it is used // at all times. readonly property real padding: (shaderEffect.readyForVisibility && antialiasing) ? (Math.max(shaderEffect.width, shaderEffect.height) / 4 * shaderEffect.softEdgeMax) - : Qt.size(0.0, 0.0) + : 0.0 readonly property real paintedWidth: (shaderEffect.readyForVisibility) ? shaderEffect.width : (image.clip ? image.width : image.paintedWidth)