Details
-
Bug
-
Resolution: Out of scope
-
P4: Low
-
5.1.1
-
None
-
windows 7 32 bit
Description
If I change my active(top level) window by pressing alt+tab on windows 7 OS, context menu still stay on top. This won't happen if I use mouse to change the active window.
sample code:
import QtQuick 2.1 import QtQuick.Controls 1.0 Item{ Rectangle{ anchors.fill: parent } MouseArea { anchors.fill: parent onClicked: contextMenu.popup() acceptedButtons: Qt.RightButton Menu{ id:contextMenu; MenuItem{text:"Item 1"} MenuItem{text:"Item 2"} } } }