Skip to content
Snippets Groups Projects
Commit 9370f5a4 authored by Andreas Traczyk's avatar Andreas Traczyk Committed by Sébastien Blin
Browse files

ongoingcallpage: fix bad property reference

Gitlab: #938
Change-Id: I6a84e14c4e95d2c4f2c914f925ad811fd324d92b
parent d4aa66c4
No related branches found
Tags nightly/20230523.0
No related merge requests found
......@@ -128,8 +128,8 @@ Rectangle {
orientation: isHorizontal ? Qt.Horizontal : Qt.Vertical
handle: Rectangle {
implicitWidth: isHorizontal ? JamiTheme.splitViewHandlePreferredWidth : root.width
implicitHeight: isHorizontal ? root.height : JamiTheme.splitViewHandlePreferredWidth
implicitWidth: mainColumnLayout.isHorizontal ? JamiTheme.splitViewHandlePreferredWidth : root.width
implicitHeight: mainColumnLayout.isHorizontal ? root.height : JamiTheme.splitViewHandlePreferredWidth
color: SplitHandle.pressed ? JamiTheme.pressColor : (SplitHandle.hovered ? JamiTheme.hoverColor : JamiTheme.tabbarBorderColor)
}
......
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