From d10d3070b9f4c91ee0277ee94c6d45fa78b7b2bc Mon Sep 17 00:00:00 2001 From: Mark Burton Date: Sun, 28 Jul 2019 08:03:36 +0100 Subject: [PATCH] Qt 5.13 compatibility - fix size of ExpandablePopup background. Without this, the view selector dropdown has no background. Tested with Qt 5.13 on Linux and Qt 5.10 on Windows. --- resources/qml/ExpandablePopup.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/ExpandablePopup.qml b/resources/qml/ExpandablePopup.qml index 2d2665373e..18255939ab 100644 --- a/resources/qml/ExpandablePopup.qml +++ b/resources/qml/ExpandablePopup.qml @@ -225,6 +225,7 @@ Item border.width: UM.Theme.getSize("default_lining").width border.color: UM.Theme.getColor("lining") radius: UM.Theme.getSize("default_radius").width + height: contentItem.implicitHeight || content.height } contentItem: Item {}