Bug can be reproduced by running the qml code below, clicking the 'next'
button, and then clicking the back button in the header:

import QtQuick 2.4
import Ubuntu.Components 1.2

MainView {
    width: units.gu(40)
    height: units.gu(60)
    Component.onCompleted: pageStack.push(page1)

    PageStack {
        id: pageStack
    }

    Page {
        id: page1
        title: "one"
        Button {
            anchors.centerIn: parent
            text: "next"
            onClicked: pageStack.push(page2)
        }
    }
    Page {
        id: page2
        title: "two"
        visible: false

        head.backAction: Action {
            iconName: "back"
            onTriggered: pageStack.pop()
        }
    }
}

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1495408

Title:
  Black square in header

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1495408/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to