From: Lars Ingebrigtsen Date: Sun, 7 Nov 2021 04:12:00 +0000 (+0100) Subject: Ensure that the x_show_hourglass is seen X-Git-Tag: emacs-29.0.90~3671^2~115 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c5767603ae4dfa3c024c5faa60ef3d5fd44178b3;p=emacs.git Ensure that the x_show_hourglass is seen * src/xterm.c (x_show_hourglass): Ensure that the hourglass is seen (bug#51649). --- 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); } } }