Does not commit space when user uses 1~5 to select candidate.

This commit is contained in:
Huang Peng 2008-06-10 13:48:34 +08:00
Родитель f55614858e
Коммит a98b627b68
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -53,7 +53,7 @@ class Engine (interface.IEngine):
if index >= len (candidates):
return False
candidate = candidates[index][0]
self._commit_string (candidate + " ")
self._commit_string (candidate)
return True
elif keyval == keysyms.Page_Up or keyval == keysyms.KP_Page_Up:
if self._lookup_table.page_up ():