Add button to go back to chat in reduced main pane

This commit is contained in:
miruka
2020-03-17 18:38:52 -04:00
parent adc6fc4af5
commit 3c0f6f60c6
2 changed files with 16 additions and 2 deletions

View File

@@ -45,5 +45,19 @@ Rectangle {
Layout.fillHeight: true
}
HButton {
visible: Layout.preferredWidth > 0
backgroundColor: "transparent"
icon.name: "go-back-to-chat-from-main-pane"
toolTip.text: qsTr("Go back to room")
onClicked: mainPane.toggleFocus()
Layout.preferredWidth: mainPane.collapse ? implicitWidth : 0
Layout.fillHeight: true
Behavior on Layout.preferredWidth { HNumberAnimation {} }
}
}
}