From 14d835a2985379bae1540927fa422c5e35cfb792 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Wed, 27 Oct 2021 14:56:50 +0200 Subject: [PATCH] Redisplay after changing to the hourglass mouse pointer * src/xterm.c (x_show_hourglass): Do a redisplay after changing to the hourglass pointer -- otherwise it won't be displayed until a keyboard/mouse event arrives (bug#19776). --- src/xterm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xterm.c b/src/xterm.c index 961c61c2452..aa1a1a5eed3 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4126,6 +4126,7 @@ x_show_hourglass (struct frame *f) XMapRaised (dpy, x->hourglass_window); XFlush (dpy); + redisplay_preserve_echo_area (21); } } } -- 2.39.2