57 + MouseArea { 58 + anchors.fill: parent 59 + onReleased: { 60 + popover.hide(); 61 + action.trigger(); 62 + } 63 + }
This seems weird/hackish to me. Why do you need this?
« Back to merge proposal
57 + MouseArea {
58 + anchors.fill: parent
59 + onReleased: {
60 + popover.hide();
61 + action.trigger();
62 + }
63 + }
This seems weird/hackish to me. Why do you need this?