diff --git a/main.qml b/main.qml index e0c026122d..c15f9bb7f9 100644 --- a/main.qml +++ b/main.qml @@ -550,7 +550,17 @@ ApplicationWindow { background: {} } - + MouseArea { + id: mouseArea1 + anchors.rightMargin: 50 + anchors.fill: parent + onClicked : { + txtData.forceActiveFocus(Qt.MouseFocusReason) + } + } + } + } + } } }