Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.8.0
-
None
-
bcbcb8d0d60b94fe9e739a9c95b4e78ac8184a0e
Description
If menu overlaps the TextField (or other item with a different cursor), the cursor takes the shape of overlapping cursor.
import QtQuick 2.6 import QtQuick.Controls 2.1 ApplicationWindow { id: root width: 300 height: 300 visible: true Column { Button { id: fileButton text: "File" onClicked: menu.open() Menu { id: menu y: fileButton.height x: fileButton.width MenuItem { text: "New..." } MenuItem { text: "Open..." } MenuItem { text: "Save" } } } TextField { placeholderText: qsTr("Enter name") } } }