From cfc620a36d2052f6b2fb6c6fa5acb10c1187819e Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 30 Aug 2010 15:26:40 +0200 Subject: GUI: wrap howto and comments rhbz#625237 --- src/gui/CReporterAssistant.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gui') diff --git a/src/gui/CReporterAssistant.py b/src/gui/CReporterAssistant.py index 6581205a..e7bb83fa 100644 --- a/src/gui/CReporterAssistant.py +++ b/src/gui/CReporterAssistant.py @@ -652,6 +652,7 @@ class ReporterAssistant(): howto_lbl.set_alignment(0.0, 0.0) howto_lbl.set_justify(gtk.JUSTIFY_FILL) self.howto_tev = gtk.TextView() + self.howto_tev.set_wrap_mode(gtk.WRAP_WORD) self.howto_tev.set_accepts_tab(False) self.howto_tev.connect("focus-out-event", self.on_howto_focusout_cb) howto_buff = gtk.TextBuffer() @@ -670,6 +671,7 @@ class ReporterAssistant(): comment_lbl.set_alignment(0.0, 0.0) comment_lbl.set_justify(gtk.JUSTIFY_FILL) self.comment_tev = gtk.TextView() + self.comment_tev.set_wrap_mode(gtk.WRAP_WORD) self.comment_tev.set_accepts_tab(False) self.comment_tev.connect("focus-in-event", self.on_comment_focusin_cb) self.comment_tev.connect("focus-out-event", self.on_comment_focusout_cb) -- cgit