1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-09-10 12:03:18 +02:00

ongoingcallpage: fix vertical layout

Change-Id: I695b1c737c4bd08a8352176877f0ec2797a36c24
This commit is contained in:
Sébastien Blin 2023-05-16 11:17:32 -04:00
parent d17578ffa7
commit 9a5829803e

View file

@ -119,7 +119,7 @@ Rectangle {
}
}
JamiSplitView {
SplitView {
id: mainColumnLayout
anchors.fill: parent
@ -127,6 +127,12 @@ Rectangle {
property bool isHorizontal: false // Calculated when showing the stack view
orientation: isHorizontal ? Qt.Horizontal : Qt.Vertical
handle: Rectangle {
implicitWidth: isHorizontal ? JamiTheme.splitViewHandlePreferredWidth : root.width
implicitHeight: isHorizontal ? root.height : JamiTheme.splitViewHandlePreferredWidth
color: SplitHandle.pressed ? JamiTheme.pressColor : (SplitHandle.hovered ? JamiTheme.hoverColor : JamiTheme.tabbarBorderColor)
}
Rectangle {
id: callPageMainRect