fix resizing wayland clients by sending configure message if client is

Not maximized.

Apparently I broke resize when fixing maximize ... uggg.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-10-12 06:14:41 -04:00
parent 355152880d
commit 55ab9a8a39
1 changed files with 8 additions and 0 deletions

View File

@ -1110,6 +1110,14 @@ _e_comp_wl_client_idler(void *data EINA_UNUSED)
// E_COMP_WL_PIXMAP_CHECK continue;
if ((ec->post_resize) && (!ec->maximized))
{
if ((ec->comp_data) && (ec->comp_data->shell.configure_send))
ec->comp_data->shell.configure_send(ec->comp_data->shell.surface,
ec->comp->wl_comp_data->resize.edges,
ec->w, ec->h);
}
ec->post_move = 0;
ec->post_resize = 0;