diff options
| author | Po Lu | 2022-03-10 11:48:12 +0800 |
|---|---|---|
| committer | Po Lu | 2022-03-10 11:48:12 +0800 |
| commit | 65fea3ff58cdb012340d7e5755188df213df480a (patch) | |
| tree | 269f5f677f6a86b8b9e75eb01612c1830382b054 /src/pgtkmenu.c | |
| parent | 4a845b2cd0e771b39b778daf4941e5c02fa8e6b8 (diff) | |
| download | emacs-65fea3ff58cdb012340d7e5755188df213df480a.tar.gz emacs-65fea3ff58cdb012340d7e5755188df213df480a.zip | |
Fix menu bar activation on PGTK
* src/gtkutil.c (menu_bar_button_pressed_cb): Only update menu
bar if no menu is active, and the event window is not the widget
window itself. Also make menu in use.
* src/pgtkmenu.c (popup_deactivate_callback): Make menu not in
use.
* src/xdisp.c (redisplay_internal): Return if popup_activated
also on PGTK.
Diffstat (limited to 'src/pgtkmenu.c')
| -rw-r--r-- | src/pgtkmenu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pgtkmenu.c b/src/pgtkmenu.c index 7a3bfea4518..bd63af3b223 100644 --- a/src/pgtkmenu.c +++ b/src/pgtkmenu.c | |||
| @@ -43,7 +43,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 43 | #include <gtk/gtk.h> | 43 | #include <gtk/gtk.h> |
| 44 | 44 | ||
| 45 | /* Flag which when set indicates a dialog or menu has been posted by | 45 | /* Flag which when set indicates a dialog or menu has been posted by |
| 46 | Xt on behalf of one of the widget sets. */ | 46 | GTK on behalf of one of the widget sets. */ |
| 47 | static int popup_activated_flag; | 47 | static int popup_activated_flag; |
| 48 | 48 | ||
| 49 | /* Set menu_items_inuse so no other popup menu or dialog is created. */ | 49 | /* Set menu_items_inuse so no other popup menu or dialog is created. */ |
| @@ -132,7 +132,7 @@ pgtk_activate_menubar (struct frame *f) | |||
| 132 | static void | 132 | static void |
| 133 | popup_deactivate_callback (GtkWidget *widget, gpointer client_data) | 133 | popup_deactivate_callback (GtkWidget *widget, gpointer client_data) |
| 134 | { | 134 | { |
| 135 | popup_activated_flag = 0; | 135 | pgtk_menu_set_in_use (false); |
| 136 | } | 136 | } |
| 137 | 137 | ||
| 138 | /* Function that finds the frame for WIDGET and shows the HELP text | 138 | /* Function that finds the frame for WIDGET and shows the HELP text |