diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-06 23:49:28 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-06 23:49:28 +1000 |
| commit | 3e8b7240ad18e747b372a046747fee6a4812677a (patch) | |
| tree | 21be02a8acc807dd13c37a6ae44b117c9138edab /modules/launcher/Background.qml | |
| parent | launcher: fix scroll bar (diff) | |
| download | caelestia-shell-3e8b7240ad18e747b372a046747fee6a4812677a.tar.gz caelestia-shell-3e8b7240ad18e747b372a046747fee6a4812677a.tar.bz2 caelestia-shell-3e8b7240ad18e747b372a046747fee6a4812677a.zip | |
popouts: use reals for rounding
So it looks better
Diffstat (limited to 'modules/launcher/Background.qml')
| -rw-r--r-- | modules/launcher/Background.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/launcher/Background.qml b/modules/launcher/Background.qml index 67e31c2..41305ae 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 |