diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-02 14:57:59 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-02 14:57:59 +1000 |
| commit | 651378d4965e1255abd524fd320f375639cd8bca (patch) | |
| tree | 447f257b511354a147c3f0df5cc04efe1a2e70d8 /modules/launcher/Wrapper.qml | |
| parent | refactor: separate launcher into multiple files (diff) | |
| download | caelestia-shell-651378d4965e1255abd524fd320f375639cd8bca.tar.gz caelestia-shell-651378d4965e1255abd524fd320f375639cd8bca.tar.bz2 caelestia-shell-651378d4965e1255abd524fd320f375639cd8bca.zip | |
launcher: add content
Also use surfaceContainer as background
Diffstat (limited to 'modules/launcher/Wrapper.qml')
| -rw-r--r-- | modules/launcher/Wrapper.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml index 17e7b3a..ed08ba1 100644 --- a/modules/launcher/Wrapper.qml +++ b/modules/launcher/Wrapper.qml @@ -5,13 +5,13 @@ Item { id: root required property bool launcherVisible + property bool shouldBeVisible anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom height: 0 - visible: false clip: true @@ -21,7 +21,7 @@ Item { PropertyChanges { root.height: content.height - root.visible: true + root.shouldBeVisible: true } } @@ -33,7 +33,7 @@ Item { SequentialAnimation { PropertyAction { target: root - property: "visible" + property: "shouldBeVisible" } NumberAnimation { target: root @@ -58,7 +58,7 @@ Item { } PropertyAction { target: root - property: "visible" + property: "shouldBeVisible" } } } |