]> git.eshelyaron.com Git - emacs.git/commitdiff
Ensure that the x_show_hourglass is seen
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 7 Nov 2021 04:12:00 +0000 (05:12 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 7 Nov 2021 04:12:00 +0000 (05:12 +0100)
* src/xterm.c (x_show_hourglass): Ensure that the hourglass is
seen (bug#51649).

src/xterm.c

index 3550cbe2f5686708d0f640972cfc7651fa252453..24f12d6e2497e0d93fe0087a0f989751d4297834 100644 (file)
@@ -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);
        }
     }
 }