diff options
| author | Lars Ingebrigtsen | 2021-11-07 05:12:00 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-11-07 05:12:00 +0100 |
| commit | c5767603ae4dfa3c024c5faa60ef3d5fd44178b3 (patch) | |
| tree | eebc528f3856c2a85b9ba44363199a4c27dca0bd /src | |
| parent | 858868e36dbb8fe30fb5ae6a59ebb2fd123e307d (diff) | |
| download | emacs-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.c | 2 |
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 | } |