diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-06 18:15:06 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-06 18:15:06 +1000 |
| commit | bdd37012bb1e855220e465fa6db101bed0cc4992 (patch) | |
| tree | 9a33eab811458934a1fb1c09067d0aebf91bad47 /modules/launcher | |
| parent | launcher: use qsTr properly (diff) | |
| download | caelestia-shell-bdd37012bb1e855220e465fa6db101bed0cc4992.tar.gz caelestia-shell-bdd37012bb1e855220e465fa6db101bed0cc4992.tar.bz2 caelestia-shell-bdd37012bb1e855220e465fa6db101bed0cc4992.zip | |
refactor: popout layer consistency with border
Make them use the same background colour and rounding as the border
Diffstat (limited to 'modules/launcher')
| -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 e7104ba..67e31c2 100644 --- a/modules/launcher/Background.qml +++ b/modules/launcher/Background.qml @@ -8,7 +8,7 @@ Shape { required property real wrapperWidth required property real realWrapperHeight - readonly property int rounding: Appearance.rounding.large + readonly property int rounding: BorderConfig.rounding readonly property int roundingY: Math.min(rounding, realWrapperHeight / 2) readonly property real wrapperHeight: realWrapperHeight - 1 // Pixel issues :sob: @@ -17,7 +17,7 @@ Shape { ShapePath { strokeWidth: -1 - fillColor: Colours.palette.m3surface + fillColor: BorderConfig.colour startY: root.wrapperHeight |