diff --git a/modules/launcher/Background.qml b/modules/launcher/Background.qml index 67e31c29..41305ae5 100644 --- a/modules/launcher/Background.qml +++ b/modules/launcher/Background.qml @@ -8,8 +8,8 @@ Shape { required property real wrapperWidth required property real realWrapperHeight - readonly property int rounding: BorderConfig.rounding - readonly property int roundingY: Math.min(rounding, realWrapperHeight / 2) + readonly property real rounding: BorderConfig.rounding + readonly property real roundingY: Math.min(rounding, realWrapperHeight / 2) readonly property real wrapperHeight: realWrapperHeight - 1 // Pixel issues :sob: preferredRendererType: Shape.CurveRenderer diff --git a/modules/osd/Background.qml b/modules/osd/Background.qml index 61441178..57b1a86c 100644 --- a/modules/osd/Background.qml +++ b/modules/osd/Background.qml @@ -8,8 +8,8 @@ Shape { required property real realWrapperWidth required property real wrapperHeight - readonly property int rounding: BorderConfig.rounding - readonly property int roundingX: Math.min(rounding, realWrapperWidth / 2) + readonly property real rounding: BorderConfig.rounding + readonly property real roundingX: Math.min(rounding, realWrapperWidth / 2) readonly property real wrapperWidth: realWrapperWidth - 1 // Pixel issues :sob: preferredRendererType: Shape.CurveRenderer