From b46f0f5e266c321632738ca40839759486b47a7e Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 3 May 2014 02:27:19 +0200 Subject: Fix #2072 (only resize a tab if the size changed since the last display) --- src/core/core.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/core/core.py') 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() -- cgit v1.2.3