From 77a2bd62f00c16af61d629f8c0f67b1eec1a5783 Mon Sep 17 00:00:00 2001 From: Ariel Calzada Date: Fri, 04 May 2012 16:34:35 +0000 Subject: Added text wrap for textview --- diff --git a/CeibalNotifica.py b/CeibalNotifica.py index 5cb91d6..6005128 100644 --- a/CeibalNotifica.py +++ b/CeibalNotifica.py @@ -71,6 +71,7 @@ class CeibalNotifica(gtk.Window): self.text_buffer = gtk.TextBuffer() self.text_view = gtk.TextView(buffer=self.text_buffer) self.text_view.set_editable(False) + self.text_view.set_wrap_mode(gtk.WRAP_WORD) self.text_view.set_justification(gtk.JUSTIFY_LEFT) hpanel = gtk.HPaned() try: -- cgit v0.9.1