From 6d5fb4ccc63661d27561a51d7891a71df600c038 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 17 Dec 2019 20:44:32 +0530 Subject: [PATCH] Fix docs build warning --- kitty/config_data.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kitty/config_data.py b/kitty/config_data.py index 34208d58d..721bef543 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -738,7 +738,8 @@ o('active_tab_font_style', 'bold-italic', option_type=tab_font_style) o('inactive_tab_foreground', '#444', option_type=to_color) o('inactive_tab_background', '#999', option_type=to_color) o('inactive_tab_font_style', 'normal', option_type=tab_font_style) -o('tab_bar_background', 'none', option_type=to_color_or_none) +o('tab_bar_background', 'none', option_type=to_color_or_none, long_text=_(''' +Background color for the tab bar. Defaults to using the terminal background color.''')) # }}}