Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
5.0.1, 5.1.0 Beta 1
-
None
-
Mac OSX
Description
When creating a child window and assigning x or y coordinates, the bindings only work after the target window has been resized or moved first. Otherwise both the x and y coordinates are set to 0.
import QtQuick 2.1 import QtQuick.Window 2.1 import "content" Window { id: root width: 580 height: 400 Window { id: subWindow visible: true y: root.y + root.height x: root.x } }