diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index cb43d39308e..f35d3be6e5d 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -5389,7 +5389,8 @@ x_make_frame_visible (f) | |||
| 5389 | if (! EQ (Vx_no_window_manager, Qt)) | 5389 | if (! EQ (Vx_no_window_manager, Qt)) |
| 5390 | x_wm_set_window_state (f, NormalState); | 5390 | x_wm_set_window_state (f, NormalState); |
| 5391 | #ifdef USE_X_TOOLKIT | 5391 | #ifdef USE_X_TOOLKIT |
| 5392 | XtPopup (f->display.x->widget, XtGrabNone); | 5392 | /* This was XtPopup, but that did nothing for an iconified frame. */ |
| 5393 | XtMapWidget (f->display.x->widget); | ||
| 5393 | #else /* not USE_X_TOOLKIT */ | 5394 | #else /* not USE_X_TOOLKIT */ |
| 5394 | XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); | 5395 | XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); |
| 5395 | #endif /* not USE_X_TOOLKIT */ | 5396 | #endif /* not USE_X_TOOLKIT */ |