fix(Input): unable to place cursor using mouse
drop a defunct MouseArea that was being used for a context menu which got removed in the meantime; it breaks clicking inside the TextField Closes: #5167
This commit is contained in:
parent
6f1cf8bd74
commit
baa7d3758a
|
@ -110,14 +110,6 @@ Item {
|
|||
Keys.onPressed: {
|
||||
inputBox.keyPressed(event);
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.RightButton | Qt.LeftButton
|
||||
onClicked: {
|
||||
inputValue.forceActiveFocus(Qt.MouseFocusReason)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
SVGImage {
|
||||
|
|
Loading…
Reference in New Issue