From b5a31fbc59d6d2408a0cc6aaa3ea31c348a7241d Mon Sep 17 00:00:00 2001 From: ATMDA Date: Sat, 15 Nov 2025 19:15:34 -0500 Subject: controlcenter: launcher pane now fades in applications --- modules/controlcenter/launcher/LauncherPane.qml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/modules/controlcenter/launcher/LauncherPane.qml b/modules/controlcenter/launcher/LauncherPane.qml index dc7a7a7..a6f6bd6 100644 --- a/modules/controlcenter/launcher/LauncherPane.qml +++ b/modules/controlcenter/launcher/LauncherPane.qml @@ -320,6 +320,19 @@ RowLayout { color: isSelected ? Colours.layer(Colours.palette.m3surfaceContainer, 2) : "transparent" radius: Appearance.rounding.normal + opacity: 0 + + Behavior on opacity { + NumberAnimation { + duration: 200 + easing.type: Easing.OutCubic + } + } + + Component.onCompleted: { + opacity = 1; + } + StateLayer { function onClicked(): void { root.selectedApp = modelData; -- cgit v1.2.3-freya