Comment 1 for bug 1190972

Revision history for this message
Michael Spencer (ibelieve) wrote :

Here is a simple hack that I've been using that seems to work well:

Tab {
    property bool show: false //true to show or false to hide
    __isPageTreeNode: !show

    onShowChanged: {
        __isPageTreeNode = show
        parent.updateTabList()
    }
}