From 4b4e2465c76a1280f40e905db6ddd5ccee04fc79 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 9 Apr 2026 15:09:30 +0200 Subject: [PATCH] fix(gui): re-enable blinking cursors by default --- src/tui/tui.zig | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tui/tui.zig b/src/tui/tui.zig index 40a99bbc..a4637eb2 100644 --- a/src/tui/tui.zig +++ b/src/tui/tui.zig @@ -2202,9 +2202,7 @@ pub fn get_cursor_shape() renderer.CursorShape { default_cursor else default_cursor; - const shape = if (build_options.gui and shape_ == .default) - .beam - else if (self.rdr_.vx.caps.multi_cursor and shape_ == .default) + const shape = if (self.rdr_.vx.caps.multi_cursor and shape_ == .default) .beam_blink else shape_;