From 0c1a7347db927b4db8f7431d140bf16fc1edace9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 28 Oct 2021 14:38:09 +0530 Subject: [PATCH] Mark another nullable color --- kitty/rc/set_colors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/rc/set_colors.py b/kitty/rc/set_colors.py index ae689ff6e..2dece5ecd 100644 --- a/kitty/rc/set_colors.py +++ b/kitty/rc/set_colors.py @@ -17,7 +17,7 @@ if TYPE_CHECKING: from kitty.cli_stub import SetColorsRCOptions as CLIOptions -nullable_colors = ('cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color', 'selection_foreground') +nullable_colors = ('cursor', 'cursor_text_color', 'tab_bar_background', 'tab_bar_margin_color', 'selection_foreground', 'active_border_color') def parse_colors(args: Iterable[str]) -> Dict[str, Optional[int]]: