Comment 4 for bug 1425379

Revision history for this message
Olivier Tilloy (osomon) wrote :

This seems to be an issue in the UITK, I can reproduce with the following sample scene:

import QtQuick 2.0
import Ubuntu.Components 1.1
import Ubuntu.Components.Popups 1.0

OrientationHelper {
    MouseArea {
        anchors.fill: parent
        onClicked: {
            PopupUtils.open(popover)
        }
        Component {
            id: popover
            ActionSelectionPopover {
                actions: Action { text: "test" }
            }
        }
    }
}