effects/overview: Animate window icon opacity

This looks better.
master
Vlad Zahorodnii 3 years ago committed by Nate Graham
parent 901cc62d28
commit 09b8f5d838

@ -108,19 +108,21 @@ FocusScope {
anchors.horizontalCenter: thumbSource.horizontalCenter
anchors.bottom: thumbSource.bottom
anchors.bottomMargin: -height / 4
opacity: heap.organized ? 1 : 0
visible: !dragHandler.active
}
PC3.Label {
id: caption
width: Math.min(implicitWidth, thumbSource.width)
anchors.top: icon.bottom
anchors.horizontalCenter: icon.horizontalCenter
elide: Text.ElideRight
text: thumb.client.caption
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
visible: !dragHandler.active
TweenBehavior on opacity {}
PC3.Label {
id: caption
width: Math.min(implicitWidth, thumbSource.width)
anchors.top: parent.bottom
anchors.horizontalCenter: parent.horizontalCenter
elide: Text.ElideRight
text: thumb.client.caption
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
}
ExpoCell {

Loading…
Cancel
Save