From 2eb07fc9cc363f2195a20af8261f4cd9a8ba55e7 Mon Sep 17 00:00:00 2001 From: thuck Date: Sun, 19 Mar 2017 14:03:24 +0100 Subject: [PATCH] Fix line size --- qutebrowser/mainwindow/tabwidget.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/mainwindow/tabwidget.py b/qutebrowser/mainwindow/tabwidget.py index b65f2c032..29daca354 100644 --- a/qutebrowser/mainwindow/tabwidget.py +++ b/qutebrowser/mainwindow/tabwidget.py @@ -496,8 +496,8 @@ class TabBar(QTabBar): return size # If we *do* have enough space, tabs should occupy the whole window - # width. If there is pinned tabs their size will be substracted from - # the total window width. + # width. If there is pinned tabs their size will be substracted + # from the total window width. # During shutdown the self.count goes down, # but the self.pinned_count not - this generates some odd behavior. # To avoid this we compare self.count against self.pinned_count.