Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.10
-
None
Description
To reproduce, right click on the TextArea and hover over a menu item. The cursor will be an I beam rather than an arrow.
This affects ContextMenu.
TextArea { text: "TextArea ContextMenu test" TapHandler { acceptedButtons: Qt.RightButton onTapped: menu.popup() } Menu { id: menu popupType: Popup.Window Action { text: qsTr("Cut") icon.name: "edit-cut" enabled: control.selectedText.length > 0 onTriggered: control.cut() } } }
Attachments
Issue Links
- relates to
-
QTBUG-35598 QtQuick Controls TextField and TextArea miss mouse context menu
- In Progress
-
QTBUG-67331 Make it possible to react to context menu events
- Closed