Comment 7 for bug 1231137

Revision history for this message
Joey Chan (qqworini) wrote :

I found a example to reproduce this bug, and a small solution:

// code like below will produce this bug
Page{
tool: ToolbarItems {
        id: toolbar

        opened: true // bug from here, never open in desktop
        locked: true // if set lock to false, swipe it up works

// code below solve temporarily
Page{
id: page
tool: null

ToolbarItems {
        id: toolbar

        opened: true
        locked: true
}

function setTool() {
       page.tool = toolbar // set toolbar manually will work
}