This commit is contained in:
Kovid Goyal 2021-11-30 20:47:16 +05:30
parent c48049a3bb
commit c0b73986cb
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -450,7 +450,7 @@ class UnicodeInput(Handler):
self.line_edit.current_input = hex(val - 1)[2:] self.line_edit.current_input = hex(val - 1)[2:]
self.refresh() self.refresh()
return return
if self.mode is NAME and key_event.type is not EventType.RELEASE and not key_event.has_mods: if self.mode is NAME:
if key_event.matches('shift+tab'): if key_event.matches('shift+tab'):
self.table.move_current(cols=-1) self.table.move_current(cols=-1)
self.refresh() self.refresh()