Comment 3 for bug 371660

Revision history for this message
Jürgen Geuter (tante) wrote :

horizontal Scrollbars would be a great improvement, though I think a preference for "forced linebreaks" would be nice for some:

In gui.py line 152

self.textbox.set_wrap_mode(gtk.WRAP_WORD)

could be made a conditional

if self.config.warpmode == "char":
        self.textbox.set_wrap_mode(gtk.WRAP_CHAR)
else:
        self.textbox.set_wrap_mode(gtk.WRAP_WORD)

It would of course clutter the Pref Window a bit.