From c5767603ae4dfa3c024c5faa60ef3d5fd44178b3 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Sun, 7 Nov 2021 05:12:00 +0100 Subject: [PATCH] Ensure that the x_show_hourglass is seen * src/xterm.c (x_show_hourglass): Ensure that the hourglass is seen (bug#51649). --- src/xterm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xterm.c b/src/xterm.c index 3550cbe2f56..24f12d6e249 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4126,6 +4126,8 @@ x_show_hourglass (struct frame *f) XMapRaised (dpy, x->hourglass_window); XFlush (dpy); + /* Ensure that the spinning hourglass is shown. */ + flush_frame (f); } } } -- 2.39.2