Unverified Commit b2371899 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8824 from DonLakeFlyer/InputMethod

Fix location of Qt.inputMethod.hide()
parents 2fb34f4c 46b4e578
......@@ -32,14 +32,12 @@ Item {
function accept() {
if (acceptAllowed) {
Qt.inputMethod.hide()
hideDialog()
}
}
function reject() {
if (rejectAllowed) {
Qt.inputMethod.hide()
hideDialog()
}
}
......
......@@ -86,6 +86,7 @@ Item {
Connections {
target: _dialogComponentLoader.item
onHideDialog: {
Qt.inputMethod.hide()
mainWindowDialog.close()
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment