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:
parent
d17578ffa7
commit
9a5829803e
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue