From fd31dfe40d1e0a2e0352b16fbc72d3d529905eb6 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 19 Oct 2018 06:34:34 -0400 Subject: Mobile/filtering: use margins instead of rectangles to create space I'm not sure why this had initially failed. Signed-off-by: Dirk Hohndel --- mobile-widgets/qml/DiveList.qml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'mobile-widgets') diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index d41057567..33668616b 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -401,13 +401,13 @@ Kirigami.ScrollablePage { anchors.left: parent.left anchors.right: parent.right - Rectangle { // margins didn't work, but adding a rectangle did - width: Kirigami.Units.gridUnit / 4 - } + anchors.leftMargin: Kirigami.Units.gridUnit / 2 + anchors.rightMargin: Kirigami.Units.gridUnit / 2 onVisibleChanged: numShown.text = diveModel.shown() Controls.TextField { id: sitefilter verticalAlignment: TextInput.AlignVCenter + Layout.fillWidth: true text: "" placeholderText: "Full text search" onAccepted: { @@ -428,9 +428,6 @@ Kirigami.ScrollablePage { // it gets set whenever visibility or the search text changes text: "" } - Rectangle { - width: Kirigami.Units.regularSpacing - } } } -- cgit v1.2.3-70-g09d2