diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/text_buffer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/text_buffer.py b/src/text_buffer.py index 6bc3ee23..dd5bc58a 100644 --- a/src/text_buffer.py +++ b/src/text_buffer.py @@ -142,11 +142,13 @@ class TextBuffer(object): ret_val = None show_timestamps = config.get('show_timestamps') + nick_size = config.get('max_nick_length') for window in self.windows: # make the associated windows # build the lines from the new message nb = window.build_new_message(msg, history=history, highlight=highlight, - timestamp=show_timestamps) + timestamp=show_timestamps, + nick_size=nick_size) if ret_val is None: ret_val = nb if window.pos != 0: |