From ad33e775f13e475d2405a089f25f6e0cc6fa3d4a Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Fri, 16 Mar 2018 11:28:03 -0700 Subject: [PATCH] Fix bottom anchor for listView when banner is showing --- interface/resources/qml/hifi/commerce/purchases/Purchases.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/commerce/purchases/Purchases.qml b/interface/resources/qml/hifi/commerce/purchases/Purchases.qml index 7bb7461596..73dc1286b5 100644 --- a/interface/resources/qml/hifi/commerce/purchases/Purchases.qml +++ b/interface/resources/qml/hifi/commerce/purchases/Purchases.qml @@ -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;