From f6eb8929c35c03f0db2217f8381fb25bb31cd6a4 Mon Sep 17 00:00:00 2001 From: Jay Kamat Date: Sun, 11 Feb 2018 00:19:08 -0500 Subject: [PATCH] Fix incorrect scroll offset after tab pin --- qutebrowser/mainwindow/tabwidget.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/qutebrowser/mainwindow/tabwidget.py b/qutebrowser/mainwindow/tabwidget.py index 6cded2a71..965e5b219 100644 --- a/qutebrowser/mainwindow/tabwidget.py +++ b/qutebrowser/mainwindow/tabwidget.py @@ -110,8 +110,6 @@ class TabWidget(QTabWidget): tab.data.pinned = pinned self._update_tab_title(idx) - bar.refresh() - def tab_indicator_color(self, idx): """Get the tab indicator color for the given index.""" return self.tabBar().tab_indicator_color(idx)