QmlDesigner: Fix combobox popup background size

This is a workaround for Window not propagating size changes to
anchored children in timely fashion (QTBUG-130354).

Fixes: QDS-13905
Change-Id: Ib22f8011e7291471bb803578b5c978a42239fc47
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Miikka Heikkinen
2024-10-28 14:04:58 +02:00
committed by Thomas Hartmann
parent f591018f78
commit d2b1b1fd46

View File

@@ -122,7 +122,8 @@ T.ComboBox {
} }
Rectangle { Rectangle {
anchors.fill: parent width: window.width
height: window.height
color: control.style.popup.background color: control.style.popup.background
} }
} }