make expanded popup work more than once

This commit is contained in:
Marco Martin 2015-10-26 16:44:29 +01:00
parent 40b02bf440
commit fde492b369

View file

@ -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
}
}
}
}