Show
Ignore:
Timestamp:
10/08/06 02:31:05 (2 years ago)
Author:
nk
Message:

make sure before_/after_time/name possible newlines are taken into account in history window too

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/history_window.py

    r7126 r7127  
    281281                        # add stuff before and after contact name 
    282282                        before_str = gajim.config.get('before_nickname') 
     283                        before_str = helpers.from_one_line(before_str) 
    283284                        after_str = gajim.config.get('after_nickname') 
     285                        after_str = helpers.from_one_line(after_str) 
    284286                        format = before_str + contact_name + after_str + ' ' 
    285287                        buf.insert_with_tags_by_name(end_iter, format, tag_name)