From dcdc676719578cb50d0e24bf8d874d1b124044b7 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 21 Jul 2023 12:46:06 +0530 Subject: [PATCH] ... --- kitty/options/definition.py | 2 +- kitty/options/types.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/options/definition.py b/kitty/options/definition.py index eefc8c16a..009bbbfd3 100644 --- a/kitty/options/definition.py +++ b/kitty/options/definition.py @@ -1391,7 +1391,7 @@ ) opt('background_image_layout', 'tiled', - choices=('mirror-tiled', 'scaled', 'tiled', 'clamped', 'centered'), + choices=('mirror-tiled', 'scaled', 'tiled', 'clamped', 'centered', 'cscaled'), ctype='bglayout', long_text=''' Whether to tile, scale or clamp the background image. The value can be one of diff --git a/kitty/options/types.py b/kitty/options/types.py index e7e53f96a..8e185cbdf 100644 --- a/kitty/options/types.py +++ b/kitty/options/types.py @@ -16,7 +16,7 @@ if typing.TYPE_CHECKING: choices_for_allow_cloning = typing.Literal['yes', 'y', 'true', 'no', 'n', 'false', 'ask'] choices_for_allow_remote_control = typing.Literal['password', 'socket-only', 'socket', 'no', 'n', 'false', 'yes', 'y', 'true'] - choices_for_background_image_layout = typing.Literal['mirror-tiled', 'scaled', 'tiled', 'clamped', 'centered'] + choices_for_background_image_layout = typing.Literal['mirror-tiled', 'scaled', 'tiled', 'clamped', 'centered', 'cscaled'] choices_for_default_pointer_shape = typing.Literal['arrow', 'beam', 'hand'] choices_for_linux_display_server = typing.Literal['auto', 'wayland', 'x11'] choices_for_macos_colorspace = typing.Literal['srgb', 'default', 'displayp3']