summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-08-30 15:26:40 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2010-11-15 16:26:28 +0100
commitba533087a967be97176356279726cd647d6a6e36 (patch)
tree8218505edf3960b0be921d5ec3a711e498b03e75 /src
parent4f304d57cfab551b19dc106e4947003f4e2f5b93 (diff)
downloadabrt-ba533087a967be97176356279726cd647d6a6e36.tar.gz
abrt-ba533087a967be97176356279726cd647d6a6e36.tar.xz
abrt-ba533087a967be97176356279726cd647d6a6e36.zip
GUI: wrap howto and comments rhbz#625237
Diffstat (limited to 'src')
-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 6e64d078..f38c5263 100644
--- a/src/Gui/CReporterAssistant.py
+++ b/src/Gui/CReporterAssistant.py
@@ -638,6 +638,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()
@@ -656,6 +657,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)