send wl client resize edges during focus-in/out send_configure

avoid prematurely terminating resize operations
This commit is contained in:
Mike Blumenkrantz 2017-03-17 13:17:02 -04:00
parent 3ca416cc0a
commit 5a94a95e63
1 changed files with 2 additions and 2 deletions

View File

@ -2533,7 +2533,7 @@ _e_comp_wl_client_cb_focus_set(void *data EINA_UNUSED, E_Client *ec)
if (ec->comp_data->shell.configure_send) if (ec->comp_data->shell.configure_send)
{ {
if (ec->comp_data->shell.surface) if (ec->comp_data->shell.surface)
_e_comp_wl_configure_send(ec, 0); _e_comp_wl_configure_send(ec, 1);
} }
//if ((ec->icccm.take_focus) && (ec->icccm.accepts_focus)) //if ((ec->icccm.take_focus) && (ec->icccm.accepts_focus))
@ -2557,7 +2557,7 @@ _e_comp_wl_client_cb_focus_unset(void *data EINA_UNUSED, E_Client *ec)
if (ec->comp_data->shell.configure_send) if (ec->comp_data->shell.configure_send)
{ {
if (ec->comp_data->shell.surface) if (ec->comp_data->shell.surface)
_e_comp_wl_configure_send(ec, 0); _e_comp_wl_configure_send(ec, 1);
} }
_e_comp_wl_focus_check(); _e_comp_wl_focus_check();