From f9e86b19aac71ded63b6f8460e380765783f30d4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 26 Mar 2020 00:20:10 +0530 Subject: [PATCH] Fix #2480 --- kitty/tab_bar.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kitty/tab_bar.py b/kitty/tab_bar.py index 12b47bf92..973dbc85f 100644 --- a/kitty/tab_bar.py +++ b/kitty/tab_bar.py @@ -81,8 +81,9 @@ def draw_tab_with_separator(draw_data: DrawData, screen: Screen, tab: TabBarData screen.draw(' ' * trailing_spaces) end = screen.cursor.x screen.cursor.bold = screen.cursor.italic = False - screen.cursor.fg = screen.cursor.bg = 0 + screen.cursor.fg = 0 screen.draw(draw_data.sep) + screen.cursor.bg = 0 return end