aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLars Ingebrigtsen2021-11-07 05:12:00 +0100
committerLars Ingebrigtsen2021-11-07 05:12:00 +0100
commitc5767603ae4dfa3c024c5faa60ef3d5fd44178b3 (patch)
treeeebc528f3856c2a85b9ba44363199a4c27dca0bd /src
parent858868e36dbb8fe30fb5ae6a59ebb2fd123e307d (diff)
downloademacs-c5767603ae4dfa3c024c5faa60ef3d5fd44178b3.tar.gz
emacs-c5767603ae4dfa3c024c5faa60ef3d5fd44178b3.zip
Ensure that the x_show_hourglass is seen
* src/xterm.c (x_show_hourglass): Ensure that the hourglass is seen (bug#51649).
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 2 insertions, 0 deletions
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)
4126 4126
4127 XMapRaised (dpy, x->hourglass_window); 4127 XMapRaised (dpy, x->hourglass_window);
4128 XFlush (dpy); 4128 XFlush (dpy);
4129 /* Ensure that the spinning hourglass is shown. */
4130 flush_frame (f);
4129 } 4131 }
4130 } 4132 }
4131} 4133}