Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Hide hint when closing and not empty #377

Open
wants to merge 1 commit into
base: xenial
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion qml/Stage/SideStage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ Showable {
Rectangle {
anchors.fill: parent
color: Qt.rgba(0,0,0,0.95)
visible: showHint || hideAnimation.running
}

Column {
Expand All @@ -62,7 +63,7 @@ Showable {
x: panelWidth/2 - width/2
spacing: units.gu(3)
opacity: 0.8
visible: showHint
visible: showHint && !hideAnimation.running

Icon {
width: units.gu(30)
Expand Down
1 change: 1 addition & 0 deletions qml/Stage/Stage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ FocusScope {
shown: false
height: appContainer.height
x: appContainer.width - width
showHint: !priv.sideStageDelegate
visible: false
Behavior on opacity { UbuntuNumberAnimation {} }
z: {
Expand Down