summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
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)