From 651378d4965e1255abd524fd320f375639cd8bca Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 2 May 2025 14:57:59 +1000 Subject: launcher: add content Also use surfaceContainer as background --- modules/launcher/Wrapper.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/launcher/Wrapper.qml') 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" } } } -- cgit v1.2.3-freya