- 
    Bug 
- 
    Resolution: Done
- 
    P1: Critical 
- 
    5.3.0 Alpha
- 
    None
- 
    Windows 7 64 bit, Fedora 20 64 bit
- 
        acf1298
When running the following code, qmlscene crashes when accessing item.visible. This only happens when the affected item is inside a SplitView and when the "visible" property is bound to "itemVisible" directly. When I change the binding to
visible: root.itemVisible
it does not crash.
import QtQuick 2.2 import QtQuick.Controls 1.1 SplitView { id: root property bool itemVisible Item { id: item visible: itemVisible onVisibleChanged: { var dummy = item.visible; } } }