mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile/UI: avoid pointless warnings
These can create quite a bit of noise in the log. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
685403ff47
commit
f503e5a9c2
1 changed files with 2 additions and 2 deletions
|
@ -47,8 +47,8 @@ Kirigami.ScrollablePage {
|
|||
padding: 0
|
||||
supportsMouseEvents: true
|
||||
anchors {
|
||||
left: parent.left
|
||||
right: parent.right
|
||||
left: parent ? parent.left : undefined
|
||||
right: parent ? parent.right : undefined
|
||||
}
|
||||
height: isTrip ? 1 + 8 * Kirigami.Units.smallSpacing : 11 * Kirigami.Units.smallSpacing // delegateInnerItem.height
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue