-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.10
-
None
To reproduce, right click on the TextArea and hover over a menu item. The cursor will be an I beam rather than an arrow.
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()
}
}
}
- relates to
-
QTBUG-35598 QtQuick Controls TextField and TextArea miss mouse context menu
-
- Closed
-
-
QTBUG-67331 Make it possible to react to context menu events
-
- Closed
-