Skip to content

Commit 847eaf9

Browse files
committed
Append space if choose candidate by 1~9 keys
1 parent ee43a58 commit 847eaf9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/input_methods/hallelujah/ime_hallelujah.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def onKeyDown(self, keyEvent):
245245
if index < len(self.candidateList):
246246
candidate = self.candidateList[index]
247247
word = self.getOutputFromCandidate(candidate)
248-
self.setCommitString(word)
248+
self.setCommitString(word + ' ')
249249
self.clear()
250250
return True
251251

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.14
1+
1.3.15

0 commit comments

Comments
 (0)