From cbf66a128ccdeca82dec9073fccb6ed8231a4e55 Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Fri, 28 Sep 2018 21:48:15 +0200 Subject: [PATCH] Fix draggin of scrollbar in SplitView --- demo/qml/DataAndChart.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/demo/qml/DataAndChart.qml b/demo/qml/DataAndChart.qml index 9e2ab5e..d4b72d8 100644 --- a/demo/qml/DataAndChart.qml +++ b/demo/qml/DataAndChart.qml @@ -71,7 +71,11 @@ RowLayout { } } SplitView { - anchors.fill: parent + Layout.fillWidth: true + Layout.fillHeight: true + handleDelegate: Rectangle { + width: 3 + } TableView { model: demo.timeSeries Layout.fillHeight: true