diff options
author | Papoteur <papoteur@mageia.org> | 2019-06-15 19:52:49 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2019-06-15 19:52:49 +0200 |
commit | b287b9e503a461745503f0b09ca345f55de656b0 (patch) | |
tree | 5a5d77616da14f2716d25bc90a0f725c1f5ca1ba /qml/mw-ui.qml | |
parent | 351bb84083544d6020b7a06caab7acbaec5b1c05 (diff) | |
download | mageiawelcome-b287b9e503a461745503f0b09ca345f55de656b0.tar mageiawelcome-b287b9e503a461745503f0b09ca345f55de656b0.tar.gz mageiawelcome-b287b9e503a461745503f0b09ca345f55de656b0.tar.bz2 mageiawelcome-b287b9e503a461745503f0b09ca345f55de656b0.tar.xz mageiawelcome-b287b9e503a461745503f0b09ca345f55de656b0.zip |
Place repo screen in a Flickable to allow overflowing (mga#24932)
Diffstat (limited to 'qml/mw-ui.qml')
-rw-r--r-- | qml/mw-ui.qml | 11 |
1 files changed, 7 insertions, 4 deletions
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 } |