Skip to content
Snippets Groups Projects
Unverified Commit ef2ec6d3 authored by Nicolas Werner's avatar Nicolas Werner Committed by GitHub
Browse files

Merge pull request #1186 from q234rty/patch-1

Fix "Send by enter" on Windows
parents cd08a130 15b9dbe9
No related branches found
No related tags found
No related merge requests found
Pipeline #3612 passed
......@@ -223,7 +223,7 @@ Rectangle {
return;
}
}
if (!Qt.inputMethod.visible) {
if (!Qt.inputMethod.visible || Qt.platform.os === "windows") {
room.input.send();
event.accepted = true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment