From 98cd2b2b9f98fe183e429a0f1fae657f4e23ea45 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 19 Nov 2016 21:14:41 +0100 Subject: [PATCH] [rigo] Force terminal expansion, fixes bug #5305 --- rigo/rigo/ui/gtk3/widgets/terminal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rigo/rigo/ui/gtk3/widgets/terminal.py b/rigo/rigo/ui/gtk3/widgets/terminal.py index 2d30bac19..486901a40 100644 --- a/rigo/rigo/ui/gtk3/widgets/terminal.py +++ b/rigo/rigo/ui/gtk3/widgets/terminal.py @@ -181,6 +181,8 @@ class TerminalWidget(Vte.Terminal): def _configure(self): self.set_scrollback_lines(10000) + self.set_rewrap_on_resize(True) + self.set_property("expand", True) self._configure_colors() def reset(self):