comparison src/xterm.c @ 49651:05ebf4266798

xterm.c (x_make_frame_visible): Call gtk_window_deiconify. xmenu.c (menu_position_func): Adjust menu popup position so that the menu is fully visible.
author Jan Djärv <jan.h.d@swipnet.se>
date Sat, 08 Feb 2003 11:18:32 +0000
parents 834df49192b0
children c6bacc76cfb6 d7ddb3e565de
comparison
equal deleted inserted replaced
49650:31ba10b86927 49651:05ebf4266798
13694 /* This was XtPopup, but that did nothing for an iconified frame. */ 13694 /* This was XtPopup, but that did nothing for an iconified frame. */
13695 XtMapWidget (f->output_data.x->widget); 13695 XtMapWidget (f->output_data.x->widget);
13696 #else /* not USE_X_TOOLKIT */ 13696 #else /* not USE_X_TOOLKIT */
13697 #ifdef USE_GTK 13697 #ifdef USE_GTK
13698 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f)); 13698 gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f));
13699 gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f)));
13699 #else 13700 #else
13700 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f)); 13701 XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f));
13701 #endif /* not USE_GTK */ 13702 #endif /* not USE_GTK */
13702 #endif /* not USE_X_TOOLKIT */ 13703 #endif /* not USE_X_TOOLKIT */
13703 #if 0 /* This seems to bring back scroll bars in the wrong places 13704 #if 0 /* This seems to bring back scroll bars in the wrong places