feat: add Mouse area to input

This commit is contained in:
Jonathan Rainville 2020-05-12 16:25:04 -04:00 committed by Iuri Matias
parent 7a57976adb
commit 7220131615
1 changed files with 11 additions and 1 deletions

View File

@ -550,7 +550,17 @@ ApplicationWindow {
background: {}
}
MouseArea {
id: mouseArea1
anchors.rightMargin: 50
anchors.fill: parent
onClicked : {
txtData.forceActiveFocus(Qt.MouseFocusReason)
}
}
}
}
}
}
}