controlcenter: launcher pane now fades in applications
This commit is contained in:
parent
fc2640c1ef
commit
b5a31fbc59
1 changed files with 13 additions and 0 deletions
|
|
@ -320,6 +320,19 @@ RowLayout {
|
||||||
color: isSelected ? Colours.layer(Colours.palette.m3surfaceContainer, 2) : "transparent"
|
color: isSelected ? Colours.layer(Colours.palette.m3surfaceContainer, 2) : "transparent"
|
||||||
radius: Appearance.rounding.normal
|
radius: Appearance.rounding.normal
|
||||||
|
|
||||||
|
opacity: 0
|
||||||
|
|
||||||
|
Behavior on opacity {
|
||||||
|
NumberAnimation {
|
||||||
|
duration: 200
|
||||||
|
easing.type: Easing.OutCubic
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
opacity = 1;
|
||||||
|
}
|
||||||
|
|
||||||
StateLayer {
|
StateLayer {
|
||||||
function onClicked(): void {
|
function onClicked(): void {
|
||||||
root.selectedApp = modelData;
|
root.selectedApp = modelData;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue