diff options
Diffstat (limited to 'alacritty')
-rw-r--r-- | alacritty/src/display/content.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/display/content.rs b/alacritty/src/display/content.rs index 1c7e2989..9f035a1c 100644 --- a/alacritty/src/display/content.rs +++ b/alacritty/src/display/content.rs @@ -48,7 +48,7 @@ impl<'a> RenderableContent<'a> { // Copy the cursor and override its shape if necessary. let mut terminal_cursor = terminal_content.cursor; - if !show_cursor { + if !show_cursor || terminal_cursor.shape == CursorShape::Hidden { terminal_cursor.shape = CursorShape::Hidden; } else if !term.is_focused && config.cursor.unfocused_hollow { terminal_cursor.shape = CursorShape::HollowBlock; |