summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-08-30 15:26:40 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-08-30 15:26:40 +0200
commitcfc620a36d2052f6b2fb6c6fa5acb10c1187819e (patch)
treec731cfe70235ba86539db975ab5b56f491ec6288 /src/gui
parentd9aae500422af490f8ab0e9d314f5c05b070eb5c (diff)
downloadabrt-cfc620a36d2052f6b2fb6c6fa5acb10c1187819e.tar.gz
abrt-cfc620a36d2052f6b2fb6c6fa5acb10c1187819e.tar.xz
abrt-cfc620a36d2052f6b2fb6c6fa5acb10c1187819e.zip
GUI: wrap howto and comments rhbz#625237
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/CReporterAssistant.py2
1 files changed, 2 insertions, 0 deletions
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)