Comment 1 for bug 1492769

Revision history for this message
Matti Rinta-Nikkola (matti-rintanikkola-d) wrote :

As a work around the bug can be resolved by overriding the default PageStack back button:

    head.backAction: Action {
        iconName: "back"
        onTriggered: {
            Qt.inputMethod.hide()
            myTimer.delay(pageStack.pop, 500)
        }
    }