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
No related tags found
No related merge requests found
...@@ -128,8 +128,8 @@ Rectangle { ...@@ -128,8 +128,8 @@ Rectangle {
orientation: isHorizontal ? Qt.Horizontal : Qt.Vertical orientation: isHorizontal ? Qt.Horizontal : Qt.Vertical
handle: Rectangle { handle: Rectangle {
implicitWidth: isHorizontal ? JamiTheme.splitViewHandlePreferredWidth : root.width implicitWidth: mainColumnLayout.isHorizontal ? JamiTheme.splitViewHandlePreferredWidth : root.width
implicitHeight: isHorizontal ? root.height : JamiTheme.splitViewHandlePreferredWidth implicitHeight: mainColumnLayout.isHorizontal ? root.height : JamiTheme.splitViewHandlePreferredWidth
color: SplitHandle.pressed ? JamiTheme.pressColor : (SplitHandle.hovered ? JamiTheme.hoverColor : JamiTheme.tabbarBorderColor) 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