From 9f489dbb3091ed86c028713603c1108dae49a084 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sat, 15 Jul 2017 21:38:09 +0200 Subject: Properly anchor and scroll the person page --- framework/qml/People.qml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/framework/qml/People.qml b/framework/qml/People.qml index 5ece85f9..79a00b08 100644 --- a/framework/qml/People.qml +++ b/framework/qml/People.qml @@ -220,14 +220,15 @@ Item { anchors { top: parent.top left: parent.left + right: parent.right leftMargin: Kube.Units.largeSpacing } - width: parent.width height: parent.height Flickable { + id: personPageFlickable anchors.fill: parent @@ -236,10 +237,18 @@ Item { clip: true + Kube.ScrollHelper { + flickable: personPageFlickable + anchors.fill: parent + } + ColumnLayout { id: contentColumn - width: personPageRoot.width + anchors { + left: parent.left + right: parent.right + } spacing: Kube.Units.largeSpacing -- cgit v1.2.3