From 8c487e9a5f12a1e3360ec6d205104659c1e86833 Mon Sep 17 00:00:00 2001 From: Nick Ginther Date: Tue, 24 May 2016 15:18:22 -0500 Subject: [PATCH] fix tabindex statusbar not updating (#1247) --- qutebrowser/mainwindow/tabbedbrowser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qutebrowser/mainwindow/tabbedbrowser.py b/qutebrowser/mainwindow/tabbedbrowser.py index b754ce9cb..708ba8174 100644 --- a/qutebrowser/mainwindow/tabbedbrowser.py +++ b/qutebrowser/mainwindow/tabbedbrowser.py @@ -412,6 +412,8 @@ class TabbedBrowser(tabwidget.TabWidget): background = config.get('tabs', 'background-tabs') if not background: self.setCurrentWidget(tab) + elif background: + self.tab_index_changed.emit(self.currentIndex(), self.count()) tab.show() self.new_tab.emit(tab, idx) return tab