From 9b1f4f5f204072ceec6481c2b57a7c4c66d8feab Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 8 Sep 2023 05:23:49 +1000 Subject: [PATCH] Do not make cursor visible on force redraw --- src/normal.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/normal.cc b/src/normal.cc index 81caeb2d..fbe83228 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -2209,6 +2209,7 @@ void force_redraw(Context& context, NormalParams) { if (context.has_client()) { + context.ensure_cursor_visible = false; context.client().force_redraw(true); context.client().redraw_ifn(); }