mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 17:10:40 -05:00
fix crash when grab failed due to another operation in progress
2002-01-15 Havoc Pennington <hp@redhat.com> * src/keybindings.c (handle_tab_backward): fix crash when grab failed due to another operation in progress (handle_tab_forward): fix crash when grab failed
This commit is contained in:
parent
e532a300b0
commit
3194faaa9c
@ -1,3 +1,9 @@
|
||||
2002-01-15 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* src/keybindings.c (handle_tab_backward): fix crash
|
||||
when grab failed due to another operation in progress
|
||||
(handle_tab_forward): fix crash when grab failed
|
||||
|
||||
2002-01-10 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* src/frame.c (meta_window_destroy_frame): only bump
|
||||
|
@ -980,20 +980,21 @@ handle_tab_forward (MetaDisplay *display,
|
||||
{
|
||||
meta_verbose ("Starting tab forward, showing popup\n");
|
||||
|
||||
meta_display_begin_grab_op (window->display,
|
||||
display->focus_window ?
|
||||
display->focus_window : window,
|
||||
META_GRAB_OP_KEYBOARD_TABBING,
|
||||
FALSE,
|
||||
0, 0,
|
||||
event->xkey.time,
|
||||
0, 0);
|
||||
|
||||
meta_ui_tab_popup_select (window->screen->tab_popup,
|
||||
window->xwindow);
|
||||
/* only after selecting proper window */
|
||||
meta_ui_tab_popup_set_showing (window->screen->tab_popup,
|
||||
TRUE);
|
||||
if (meta_display_begin_grab_op (window->display,
|
||||
display->focus_window ?
|
||||
display->focus_window : window,
|
||||
META_GRAB_OP_KEYBOARD_TABBING,
|
||||
FALSE,
|
||||
0, 0,
|
||||
event->xkey.time,
|
||||
0, 0))
|
||||
{
|
||||
meta_ui_tab_popup_select (window->screen->tab_popup,
|
||||
window->xwindow);
|
||||
/* only after selecting proper window */
|
||||
meta_ui_tab_popup_set_showing (window->screen->tab_popup,
|
||||
TRUE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1040,20 +1041,21 @@ handle_tab_backward (MetaDisplay *display,
|
||||
{
|
||||
meta_verbose ("Starting tab backward, showing popup\n");
|
||||
|
||||
meta_display_begin_grab_op (window->display,
|
||||
display->focus_window ?
|
||||
display->focus_window : window,
|
||||
META_GRAB_OP_KEYBOARD_TABBING,
|
||||
FALSE,
|
||||
0, 0,
|
||||
event->xkey.time,
|
||||
0, 0);
|
||||
|
||||
meta_ui_tab_popup_select (window->screen->tab_popup,
|
||||
window->xwindow);
|
||||
/* only after selecting proper window */
|
||||
meta_ui_tab_popup_set_showing (window->screen->tab_popup,
|
||||
TRUE);
|
||||
if (meta_display_begin_grab_op (window->display,
|
||||
display->focus_window ?
|
||||
display->focus_window : window,
|
||||
META_GRAB_OP_KEYBOARD_TABBING,
|
||||
FALSE,
|
||||
0, 0,
|
||||
event->xkey.time,
|
||||
0, 0))
|
||||
{
|
||||
meta_ui_tab_popup_select (window->screen->tab_popup,
|
||||
window->xwindow);
|
||||
/* only after selecting proper window */
|
||||
meta_ui_tab_popup_set_showing (window->screen->tab_popup,
|
||||
TRUE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user