Fix bottom anchor for listView when banner is showing

This commit is contained in:
Zach Fox 2018-03-16 11:28:03 -07:00
parent eb2f8aa169
commit ad33e775f1

View file

@ -429,7 +429,7 @@ Rectangle {
anchors.top: separator.bottom; anchors.top: separator.bottom;
anchors.topMargin: 12; anchors.topMargin: 12;
anchors.left: parent.left; anchors.left: parent.left;
anchors.bottom: parent.bottom; anchors.bottom: updatesAvailableBanner.visible ? updatesAvailableBanner.top : parent.bottom;
width: parent.width; width: parent.width;
delegate: PurchasedItem { delegate: PurchasedItem {
itemName: title; itemName: title;