diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/core.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/core.py b/src/core/core.py index 88d8ea80..622cad78 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -1582,7 +1582,9 @@ class Core(object): self.resize_global_information_win() with g_lock: for tab in self.tabs: - if not config.get('lazy_resize', True): + if config.get('lazy_resize', True): + tab.need_resize = True + else: tab.resize() if self.tabs: self.full_screen_redraw() |