diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-08 19:32:38 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-08 19:32:38 +1000 |
| commit | 5b8edfc1e29433b40bb1120043bc1b79010a6cc1 (patch) | |
| tree | 99476b16b36a299b82e8497be9338d6cc760ef8c /modules/drawers/Backgrounds.qml | |
| parent | controlcenter: hide float button when floating (diff) | |
| download | caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.tar.gz caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.tar.bz2 caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.zip | |
internal: transparency support coming soon™
Also fix media player selector text colour
Fix colour preview not resetting light/dark mode
Diffstat (limited to 'modules/drawers/Backgrounds.qml')
| -rw-r--r-- | modules/drawers/Backgrounds.qml | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/modules/drawers/Backgrounds.qml b/modules/drawers/Backgrounds.qml index ff09232..e1773a1 100644 --- a/modules/drawers/Backgrounds.qml +++ b/modules/drawers/Backgrounds.qml @@ -20,45 +20,44 @@ Shape { anchors.margins: Config.border.thickness anchors.leftMargin: bar.implicitWidth preferredRendererType: Shape.CurveRenderer - opacity: Colours.transparency.enabled ? Colours.transparency.base : 1 Osd.Background { - wrapper: panels.osd + wrapper: root.panels.osd - startX: root.width - panels.session.width + startX: root.width - root.panels.session.width startY: (root.height - wrapper.height) / 2 - rounding } Notifications.Background { - wrapper: panels.notifications + wrapper: root.panels.notifications startX: root.width startY: 0 } Session.Background { - wrapper: panels.session + wrapper: root.panels.session startX: root.width startY: (root.height - wrapper.height) / 2 - rounding } Launcher.Background { - wrapper: panels.launcher + wrapper: root.panels.launcher startX: (root.width - wrapper.width) / 2 - rounding startY: root.height } Dashboard.Background { - wrapper: panels.dashboard + wrapper: root.panels.dashboard startX: (root.width - wrapper.width) / 2 - rounding startY: 0 } BarPopouts.Background { - wrapper: panels.popouts + wrapper: root.panels.popouts invertBottomRounding: wrapper.y + wrapper.height + 1 >= root.height startX: wrapper.x @@ -66,7 +65,7 @@ Shape { } Utilities.Background { - wrapper: panels.utilities + wrapper: root.panels.utilities startX: root.width startY: root.height |