Skip to content
Snippets Groups Projects
Commit f563098e authored by Malte E's avatar Malte E
Browse files

Don't send on Enter when inputMethod.visible ( == OSK active assumed)

parent d58a4836
No related branches found
No related tags found
No related merge requests found
......@@ -224,8 +224,10 @@ Rectangle {
return;
}
}
room.input.send();
event.accepted = true;
if (!Qt.inputMethod.visible) {
room.input.send();
event.accepted = true;
}
} else if (event.key == Qt.Key_Tab && (event.modifiers == Qt.NoModifier || event.modifiers == Qt.ShiftModifier)) {
event.accepted = true;
if (popup.opened) {
......
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