From 59e6285037cba04d0ffdcd77cd27bf8aaa59fe8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 30 Nov 2021 22:14:05 +0100 Subject: [PATCH] term: xcursor_update_for_seat(): remove duplicate check for term->is_searching --- terminal.c | 1 - 1 file changed, 1 deletion(-) diff --git a/terminal.c b/terminal.c index 09c3ec73..d65c0bd0 100644 --- a/terminal.c +++ b/terminal.c @@ -2971,7 +2971,6 @@ term_xcursor_update_for_seat(struct terminal *term, struct seat *seat) : (seat->mouse.col >= 0 && seat->mouse.row >= 0 && term_mouse_grabbed(term, seat)) ? XCURSOR_TEXT - : term->is_searching ? XCURSOR_TEXT : XCURSOR_LEFT_PTR; break; }