How can I get Popups in Window without this warning?
-
so i want to filter
PopupsinWindowobject and the way i can think of is the following, it works and i get them but i get this warning when i run this command:qml-qt6 main.qmlQQmlExpression: Expression qs:@/qs/Test5.qml:9:5 depends on non-bindable properties: QQuickRootItem::resourceshere's how to recreate it
import QtQuick import QtQuick.Controls Window { id: root visible: true Text { text: root.contentItem.resources.filter(r => r instanceof Popup).toString() } Popup { // ... } Popup { // ... } } ``