Skip to content
Snippets Groups Projects
Commit b26e6dba authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

calls: remove "back" button from call overlay

This button interferes with participant overlays and the concept
of returning to the welcome view will be phased out.

Change-Id: I7ee73ed93c6ec74f10b5b00ca1fe5739a88b123d
parent 8ab37ab4
No related branches found
No related tags found
No related merge requests found
......@@ -270,40 +270,6 @@ Rectangle {
anchors.fill: parent
PushButton {
id: backButton
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
Layout.preferredWidth: JamiTheme.preferredFieldHeight
Layout.preferredHeight: JamiTheme.preferredFieldHeight
Layout.rightMargin: JamiTheme.preferredMarginSize
Layout.topMargin: JamiTheme.preferredMarginSize
Layout.leftMargin: JamiTheme.preferredMarginSize
source: JamiQmlUtils.callIsFullscreen ?
"qrc:/images/icons/round-close-24px.svg" :
"qrc:/images/icons/ic_arrow_back_24px.svg"
pressedColor: JamiTheme.invertedPressedButtonColor
hoveredColor: JamiTheme.invertedHoveredButtonColor
normalColor: JamiTheme.invertedNormalButtonColor
imageColor: JamiTheme.whiteColor
toolTipText: qsTr("Toggle to display side panel")
visible: true
onClicked: {
if (JamiQmlUtils.callIsFullscreen) {
callStackView.toggleFullScreen()
} else {
mainView.showWelcomeView()
}
}
}
Text {
id: jamiBestNameText
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment