diff options
| -rw-r--r-- | modules/controlcenter/launcher/LauncherPane.qml | 13 |
1 files changed, 13 insertions, 0 deletions
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; |