Mercurial > emacs
diff src/xterm.c @ 7167:2fa74c48e4e5
(x_make_frame_visible): Use XtMapWidget, not XtPopup.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 28 Apr 1994 07:46:27 +0000 |
parents | 6c6a776a64e1 |
children | c21fcad6f1f5 |
line wrap: on
line diff
--- a/src/xterm.c Thu Apr 28 07:32:21 1994 +0000 +++ b/src/xterm.c Thu Apr 28 07:46:27 1994 +0000 @@ -5389,7 +5389,8 @@ if (! EQ (Vx_no_window_manager, Qt)) x_wm_set_window_state (f, NormalState); #ifdef USE_X_TOOLKIT - XtPopup (f->display.x->widget, XtGrabNone); + /* This was XtPopup, but that did nothing for an iconified frame. */ + XtMapWidget (f->display.x->widget); #else /* not USE_X_TOOLKIT */ XMapWindow (XDISPLAY FRAME_X_WINDOW (f)); #endif /* not USE_X_TOOLKIT */