diff options
author | mathieui <mathieui@mathieui.net> | 2013-05-10 00:49:38 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-05-10 00:49:38 +0200 |
commit | ca8b67fca9448b2082a07b55c799b852f32fa623 (patch) | |
tree | 76574782429943aed95adf41f4fcd4f76ef1192d /src/core.py | |
parent | 60388686a5f1fcc67638a139b4194eb6afe909e4 (diff) | |
download | poezio-ca8b67fca9448b2082a07b55c799b852f32fa623.tar.gz poezio-ca8b67fca9448b2082a07b55c799b852f32fa623.tar.bz2 poezio-ca8b67fca9448b2082a07b55c799b852f32fa623.tar.xz poezio-ca8b67fca9448b2082a07b55c799b852f32fa623.zip |
Fix #2131 (Input cursor when pasting text)
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py index ea927af4..6766ef6a 100644 --- a/src/core.py +++ b/src/core.py @@ -395,6 +395,7 @@ class Core(object): if current: res.append(current) return res + while self.running: big_char_list = [replace_key_with_bound(key)\ for key in self.read_keyboard()] |