mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Fix bottom anchor for listView when banner is showing
This commit is contained in:
parent
eb2f8aa169
commit
ad33e775f1
1 changed files with 1 additions and 1 deletions
|
@ -429,7 +429,7 @@ Rectangle {
|
|||
anchors.top: separator.bottom;
|
||||
anchors.topMargin: 12;
|
||||
anchors.left: parent.left;
|
||||
anchors.bottom: parent.bottom;
|
||||
anchors.bottom: updatesAvailableBanner.visible ? updatesAvailableBanner.top : parent.bottom;
|
||||
width: parent.width;
|
||||
delegate: PurchasedItem {
|
||||
itemName: title;
|
||||
|
|
Loading…
Reference in a new issue