From b287b9e503a461745503f0b09ca345f55de656b0 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 15 Jun 2019 19:52:49 +0200 Subject: Place repo screen in a Flickable to allow overflowing (mga#24932) --- qml/mw-ui.qml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'qml/mw-ui.qml') diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index d2bf720..3ee2532 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -108,11 +108,13 @@ Rectangle { width: view.width; height: view.height Loader { sourceComponent: slidebackground ; anchors.fill: parent} - - //Column { - //anchors.left: parent.left - // y: 10 + Flickable { + width: view.width; height: view.height + contentWidth: gridRepo.width; contentHeight: gridRepo.height + clip: true + flickableDirection: Flickable.VerticalFlick GridLayout { + id: gridRepo columns: 2 Label { Layout.columnSpan: 2 @@ -295,6 +297,7 @@ Rectangle { buttonText: qsTr("Edit software sources")+" *" } } + } Label { anchors {top: parent.bottom; topMargin: 3; horizontalCenter: parent.left; horizontalCenterOffset: parent.width * .4 } -- cgit v1.2.1