diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 11:04:03 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 11:04:03 +1000 |
| commit | 9071de0d601e588b6840b10d84edd6edc60c5a64 (patch) | |
| tree | 8f1c663d083fc72281df94c464ff54ab2074a83b /modules/launcher | |
| parent | feat: border + colour changes (diff) | |
| download | caelestia-shell-9071de0d601e588b6840b10d84edd6edc60c5a64.tar.gz caelestia-shell-9071de0d601e588b6840b10d84edd6edc60c5a64.tar.bz2 caelestia-shell-9071de0d601e588b6840b10d84edd6edc60c5a64.zip | |
feat: shadow
Border exclusivity
Fix slider handle text colour
Diffstat (limited to 'modules/launcher')
| -rw-r--r-- | modules/launcher/Launcher.qml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/launcher/Launcher.qml b/modules/launcher/Launcher.qml index 26549f5..e0b002b 100644 --- a/modules/launcher/Launcher.qml +++ b/modules/launcher/Launcher.qml @@ -25,7 +25,6 @@ Scope { item: wrapper } - margins.bottom: BackgroundConfig.border.thickness anchors.top: true anchors.left: true anchors.bottom: true @@ -34,6 +33,8 @@ Scope { Background { id: bg + visible: false + anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.bottom @@ -41,6 +42,10 @@ Scope { realWrapperHeight: Math.min(wrapper.height, content.height) } + LayerShadow { + source: bg + } + Wrapper { id: wrapper |