-
Bug
-
Resolution: Cannot Reproduce
-
P2: Important
-
5.4.0 Beta
-
None
-
OS X 10.9.4
The action of this code can be triggered only once.
import QtQuick 2.3 import QtQuick.Window 2.0 import QtQuick.Controls 1.2 Item { Action { shortcut: "Space" onTriggered: { console.log("Triggered") popup.show(); popup.close(); } } Window { id: popup flags: Qt.Popup } }