]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_make_frame_visible): Use XtMapWidget, not XtPopup.
authorRichard M. Stallman <rms@gnu.org>
Thu, 28 Apr 1994 07:46:27 +0000 (07:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 28 Apr 1994 07:46:27 +0000 (07:46 +0000)
src/xterm.c

index cb43d39308e3e6be81478601282a54fa9eca8750..f35d3be6e5dc5dff57440ff7b2baf2e1c683f280 100644 (file)
@@ -5389,7 +5389,8 @@ x_make_frame_visible (f)
       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 */