diff --git a/qutebrowser/widgets/tabwidget.py b/qutebrowser/widgets/tabwidget.py index 9a2bb1f08..41b8d6e70 100644 --- a/qutebrowser/widgets/tabwidget.py +++ b/qutebrowser/widgets/tabwidget.py @@ -142,7 +142,7 @@ class TabBar(QTabBar): @pyqtSlot(str, str) def on_tab_colors_changed(self, section, option): """Set the tab colors.""" - if section == 'colors' and option.startswith('tabs.fg.'): + if section == 'colors' and option.startswith('tabs.'): self.update() def mousePressEvent(self, e):