diff --git a/gui/chrome_tabs.py b/gui/chrome_tabs.py index 8ca0f92a0..c1e623900 100644 --- a/gui/chrome_tabs.py +++ b/gui/chrome_tabs.py @@ -402,6 +402,10 @@ class _TabRenderer: width = max(width, self.min_width) height = max(height, self.min_height) + cur_width, cur_height = self.tab_size + if (width == cur_width) and (height == cur_height): + return + self.tab_size = (width, height) self.InitTab()