summaryrefslogtreecommitdiff
path: root/modules/launcher
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-04 20:45:34 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-04 20:45:34 +1000
commitfb471f1023ab4991c124d0bc432028d95d7b7300 (patch)
tree6e46278fabc8f4b584cd668703bfe28e3d78ec8d /modules/launcher
parentappearance: better on colours (diff)
downloadcaelestia-shell-fb471f1023ab4991c124d0bc432028d95d7b7300.tar.gz
caelestia-shell-fb471f1023ab4991c124d0bc432028d95d7b7300.tar.bz2
caelestia-shell-fb471f1023ab4991c124d0bc432028d95d7b7300.zip
feat: audio osd
Diffstat (limited to 'modules/launcher')
-rw-r--r--modules/launcher/Background.qml2
-rw-r--r--modules/launcher/Content.qml1
-rw-r--r--modules/launcher/Launcher.qml2
-rw-r--r--modules/launcher/Wrapper.qml2
4 files changed, 2 insertions, 5 deletions
diff --git a/modules/launcher/Background.qml b/modules/launcher/Background.qml
index 8cfaac8..0e9f7dd 100644
--- a/modules/launcher/Background.qml
+++ b/modules/launcher/Background.qml
@@ -11,8 +11,6 @@ Shape {
readonly property int roundingY: Math.min(rounding, realWrapperHeight / 2)
readonly property real wrapperHeight: realWrapperHeight - 1 // Pixel issues :sob:
- anchors.bottom: parent.bottom
-
preferredRendererType: Shape.CurveRenderer
opacity: Appearance.transparency.enabled ? Appearance.transparency.base : 1
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml
index 9759abb..315835e 100644
--- a/modules/launcher/Content.qml
+++ b/modules/launcher/Content.qml
@@ -33,7 +33,6 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: search.top
anchors.bottomMargin: root.spacing
- anchors.margins: root.padding
ContentList {
id: list
diff --git a/modules/launcher/Launcher.qml b/modules/launcher/Launcher.qml
index bbd2f91..34e592a 100644
--- a/modules/launcher/Launcher.qml
+++ b/modules/launcher/Launcher.qml
@@ -34,6 +34,7 @@ Scope {
id: bg
anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
wrapperWidth: wrapper.width
realWrapperHeight: Math.min(wrapper.height, content.height)
@@ -43,6 +44,7 @@ Scope {
id: wrapper
anchors.horizontalCenter: parent.horizontalCenter
+ anchors.bottom: parent.bottom
implicitWidth: content.width + bg.rounding * 2
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml
index 132a130..d221a0b 100644
--- a/modules/launcher/Wrapper.qml
+++ b/modules/launcher/Wrapper.qml
@@ -8,8 +8,6 @@ Item {
required property real contentHeight
property bool shouldBeVisible
- anchors.bottom: parent.bottom
-
height: 0
clip: true