use pixmap size for resizes in wl commit

the client size should be this anyway, but we just refreshed the pixmap above so this is guaranteed to be accurate
This commit is contained in:
Mike Blumenkrantz 2015-02-06 18:26:17 -05:00
parent 270bc92f81
commit b720b7c179
1 changed files with 1 additions and 4 deletions

View File

@ -2612,10 +2612,7 @@ e_comp_wl_surface_commit(E_Client *ec)
{
int nw, nh;
nw = ec->client.w;
nh = ec->client.h;
if (nw == 0) nw = ec->comp_data->pending.w;
if (nh == 0) nh = ec->comp_data->pending.h;
e_pixmap_size_get(ec->pixmap, &nw, &nh);
/* if the client has a shell configure, call it */
if ((ec->comp_data->shell.surface) &&