From 830364e02671b3ab462b3724835c8ca9e96fc2d7 Mon Sep 17 00:00:00 2001 From: Eyal Chojnowski Date: Thu, 6 Feb 2020 13:05:10 +0100 Subject: [PATCH] Fix option_type --- kitty/config_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/config_data.py b/kitty/config_data.py index 989c750da..6355626d9 100644 --- a/kitty/config_data.py +++ b/kitty/config_data.py @@ -394,7 +394,7 @@ def cursor_text_color(x): background color of the cell underneath instead, use the special keyword: background''')) o('cursor_shape', 'block', option_type=to_cursor_shape, long_text=_( 'The cursor shape can be one of (block, beam, underline)')) -o('cursor_beam_thickness', 1.5, option_type=float, long_text=_( +o('cursor_beam_thickness', 1.5, option_type=positive_float, long_text=_( 'Defines the thickness of the beam cursor')) o('cursor_blink_interval', -1, option_type=float, long_text=_(''' The interval (in seconds) at which to blink the cursor. Set to zero to disable