diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2003-02-08 11:18:32 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2003-02-08 11:18:32 +0000 |
commit | 7b76ca1c43fcaa58bf2c7c3503c8f33399eab8eb (patch) | |
tree | 49d7e7cb08c701db988a1cda2304040439674921 /src/xterm.c | |
parent | fea8973a15f90e36abfe4b6c40d520161b0ea1b8 (diff) | |
download | emacs-7b76ca1c43fcaa58bf2c7c3503c8f33399eab8eb.tar.gz |
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.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c index 2bda1e0982f..a27ddb22612 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -13696,6 +13696,7 @@ x_make_frame_visible (f) #else /* not USE_X_TOOLKIT */ #ifdef USE_GTK gtk_widget_show_all (FRAME_GTK_OUTER_WIDGET (f)); + gtk_window_deiconify (GTK_WINDOW (FRAME_GTK_OUTER_WIDGET (f))); #else XMapRaised (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f)); #endif /* not USE_GTK */ |