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