Hey hey
When I create new standalone windows from QML, using code like this
var component = Qt.createComponent("Window.qml");
var win = component.createObject(root);
win.show();
the created windows are always on top of the main window, but child windows itself behave correctly. I wonder what I’m doing wrong :)
↧