diff options
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index 98d2a7fa..4e837e4d 100644 --- a/src/core.py +++ b/src/core.py @@ -691,7 +691,10 @@ class Core(object): """ with resize_lock: for tab in self.tabs: - tab.resize() + # Each tab will be resized the next + # time it will be refresh()'ed + # Making the resize process faster + tab.need_resize = True self.refresh_window() def main_loop(self): |