From 27ff086b8edb6387c8710013a41ce631babc3e1a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Tue, 10 Jan 2012 14:28:58 -0500 Subject: [PATCH] window: Break widget grab before shell surface move or grab --- clients/window.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/clients/window.c b/clients/window.c index 67e8dd0..c81aed3 100644 --- a/clients/window.c +++ b/clients/window.c @@ -1365,6 +1365,12 @@ window_menu_func(struct window *window, int index, void *data) } } +static void +break_grab(struct window *window) +{ + window->focus_widget = NULL; + window->widget_grab_button = 0; +} static void input_handle_button(void *data, @@ -1392,6 +1398,7 @@ input_handle_button(void *data, if (!window->shell_surface) break; input_set_pointer_image(input, time, POINTER_DRAGGING); + break_grab(window); wl_shell_surface_move(window->shell_surface, input_device, time); break; @@ -1405,6 +1412,7 @@ input_handle_button(void *data, case WINDOW_RESIZING_BOTTOM_RIGHT: if (!window->shell_surface) break; + break_grab(window); wl_shell_surface_resize(window->shell_surface, input_device, time, location); -- 2.7.4