Skip to content

Commit 059e4a7

Browse files
huynhtrankhanhmkrnr
authored andcommitted
Send space instead of enter to finalize unicode with uinput (#1731)
1 parent 2c66184 commit 059e4a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

news.d/bugfix/1731.linux.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
When inputting Unicode with uinput the code now uses space to finalize the Unicode character instead of enter.

plover/oslayer/linux/keyboardcontrol_uinput.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def _send_unicode(self, hex):
307307
self.delay()
308308
self.send_string(hex)
309309
self.delay()
310-
self._send_char("\n")
310+
self._send_char(" ")
311311

312312
def _send_char(self, char):
313313
(base, mods) = self._get_key(char)

0 commit comments

Comments
 (0)