Skip to content
Snippets Groups Projects
Commit 8cd566c1 authored by nkour's avatar nkour
Browse files

more properties so they do not get lost after refactoring

parent 72fea5dd
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,12 @@ class MessageTextView(gtk.TextView):
)
def __init__(self):
# set properties
self.set_border_width(1)
self.set_accepts_tab(True)
self.set_editable(True)
self.set_cursor_visible(True)
self.set_wrap_mode(gtk.WRAP_WORD)
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