Merge pull request #1186 from q234rty/patch-1

Fix "Send by enter" on Windows
pull/1188/head
DeepBlueV7.X 2 years ago committed by GitHub
commit ef2ec6d3e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      resources/qml/MessageInput.qml

@ -223,7 +223,7 @@ Rectangle {
return;
}
}
if (!Qt.inputMethod.visible) {
if (!Qt.inputMethod.visible || Qt.platform.os === "windows") {
room.input.send();
event.accepted = true;
}

Loading…
Cancel
Save