mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
make expanded popup work more than once
This commit is contained in:
parent
40b02bf440
commit
fde492b369
1 changed files with 2 additions and 9 deletions
|
|
@ -61,16 +61,15 @@ Item {
|
|||
}
|
||||
height: units.smallSpacing
|
||||
color: PlasmaCore.ColorScope.highlightColor
|
||||
visible: plasmoid.expanded
|
||||
visible: plasmoid.formFactor != PlasmaCore.Types.Planar && plasmoid.expanded
|
||||
}
|
||||
|
||||
PlasmaCore.FrameSvgItem {
|
||||
id: appletParent
|
||||
imagePath: "widgets/background"
|
||||
//used only indesktop mode, not panel
|
||||
visible: plasmoid.formFactor == PlasmaCore.Types.Planar
|
||||
visible: plasmoid.expanded && plasmoid.formFactor == PlasmaCore.Types.Planar
|
||||
z: 99
|
||||
opacity: plasmoid.expanded ? 1 : 0
|
||||
anchors.top: parent.top
|
||||
width: parent.width
|
||||
height: units.gridUnit * 20 - units.iconSizes.medium
|
||||
|
|
@ -85,12 +84,6 @@ Item {
|
|||
z: -1
|
||||
onClicked: plasmoid.expanded = false;
|
||||
}
|
||||
Behavior on opacity {
|
||||
OpacityAnimator {
|
||||
duration: units.longDuration
|
||||
easing.type: Easing.InOutQuad
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue