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:
Lukáš Tinkl 2022-08-02 23:27:28 +02:00 committed by Lukáš Tinkl
parent 6f1cf8bd74
commit baa7d3758a
1 changed files with 0 additions and 8 deletions

View File

@ -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 {