- 
    
Bug
 - 
    Resolution: Done
 - 
    
P2: Important
 - 
    5.0.1, 5.2.0
 - 
    Windows 7, OS X 10.9
 
- 
        865b4ec84a7c09565c0946d0498274bc71f9e7d0
 
In examples/quick/scenegraph/simplematerial example if add layer.enabled: true; Column moves down on 1/3 of screen:
        SimpleMaterialItem {
            layer.enabled: true;
            width: parent.width;
            height: parent.height / 3;
            color: "white"
        }
But if change Column anchor with FIXED size it becomes OK:
    Column {
//        anchors.fill: parent
        width: 300;
        height: 300;
        x:0; y: 0;
If set parent-based size, everything bed again:
    Column {
//        anchors.fill: parent
        width: parent.width;
        height: parent.height;
        x:0; y: 0;
P.S. Not sure that this is bug, but looks strange.
- relates to
 - 
                    
QTBUG-63269 Layouts are broken when using layers
-         
 - Closed
 
 -         
 
- replaces
 - 
                    
QTBUG-37574 Wrong layout of items when using layer.enabled with Row/Column
-         
 - Closed
 
 -