Skip to content
Snippets Groups Projects
Commit d4b6cb7a authored by dkirov's avatar dkirov
Browse files

set wrap WORD_CHAR and skip horizontal scrlbar

parent 880253f9
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ def __init__(self, account):
self.tv.set_accepts_tab(True)
self.tv.set_editable(False)
self.tv.set_cursor_visible(False)
self.tv.set_wrap_mode(gtk.WRAP_WORD)
self.tv.set_wrap_mode(gtk.WRAP_WORD_CHAR)
self.tv.set_left_margin(2)
self.tv.set_right_margin(2)
self.handlers = {}
......
......@@ -44,7 +44,7 @@ def __init__(self):
self.set_accepts_tab(True)
self.set_editable(True)
self.set_cursor_visible(True)
self.set_wrap_mode(gtk.WRAP_WORD)
self.set_wrap_mode(gtk.WRAP_WORD_CHAR)
self.set_left_margin(2)
self.set_right_margin(2)
self.set_pixels_above_lines(2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment