mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 22:33:24 +00:00
Mobile/filtering: use margins instead of rectangles to create space
I'm not sure why this had initially failed. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c797038bd8
commit
fd31dfe40d
1 changed files with 3 additions and 6 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue