diff options
author | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-15 13:16:30 +0000 |
---|---|---|
committer | louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13> | 2010-11-15 13:16:30 +0000 |
commit | 0216ac29dbcf49865e145db42d9fbcfcd2bebd19 (patch) | |
tree | 93057b75c33fe756a88b4543c345aab8e841916b /src/buffers.py | |
parent | f4d4a205f136c6373c415657dd35b4f078f25c69 (diff) | |
download | poezio-0216ac29dbcf49865e145db42d9fbcfcd2bebd19.tar.gz poezio-0216ac29dbcf49865e145db42d9fbcfcd2bebd19.tar.bz2 poezio-0216ac29dbcf49865e145db42d9fbcfcd2bebd19.tar.xz poezio-0216ac29dbcf49865e145db42d9fbcfcd2bebd19.zip |
Do not refresh the screen on each input
Diffstat (limited to 'src/buffers.py')
-rw-r--r-- | src/buffers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buffers.py b/src/buffers.py index d4af680d..31e227dc 100644 --- a/src/buffers.py +++ b/src/buffers.py @@ -491,6 +491,7 @@ class TextWin(Win): if txt.startswith('\n'): txt = txt[1:] first = False + log.debug('%s built\n' % len(lines)) return lines return lines[-len(messages):] # return only the needed number of lines |