From 60513fcbab24c24cf9a21eba47c078790641f828 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 6 Dec 2016 08:59:13 +0530 Subject: [PATCH] ... --- kitty/tabs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/tabs.py b/kitty/tabs.py index 25c34dc6a..5985dedc6 100644 --- a/kitty/tabs.py +++ b/kitty/tabs.py @@ -145,7 +145,7 @@ class TabManager: @property def tab_bar_height(self): - return 0 if len(self.tabs) < 1 else cell_size.height + return 0 if len(self.tabs) < 2 else cell_size.height def remove(self, tab): ' Must be called in the GUI thread '