use better unicode char

This commit is contained in:
Nikos Kouremenos 2005-10-08 15:09:25 +00:00
parent f3584e3e3c
commit d473aa7a8b
1 changed files with 3 additions and 1 deletions

View File

@ -231,7 +231,9 @@ class GroupchatWindow(chat.Chat):
# add the new focus out line
dash_char = unicodedata.lookup(
'BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL').encode('utf-8')
'BOX DRAWINGS HEAVY HORIZONTAL').encode('utf-8')
# maybe add gtk.JUSTIFY_FILL on 'justify' in texttag
focus_out_line = '\n' + dash_char * 15 # FIXME: do better position stuff
end_iter = buffer.get_end_iter()
buffer.insert(end_iter, focus_out_line)