diff options
| author | Jan Djärv | 2003-02-08 11:18:32 +0000 |
|---|---|---|
| committer | Jan Djärv | 2003-02-08 11:18:32 +0000 |
| commit | 7b76ca1c43fcaa58bf2c7c3503c8f33399eab8eb (patch) | |
| tree | 49d7e7cb08c701db988a1cda2304040439674921 /src/xterm.c | |
| parent | fea8973a15f90e36abfe4b6c40d520161b0ea1b8 (diff) | |
| download | emacs-7b76ca1c43fcaa58bf2c7c3503c8f33399eab8eb.tar.gz emacs-7b76ca1c43fcaa58bf2c7c3503c8f33399eab8eb.zip | |
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) | |||
| 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 */ |