From: Mike Blumenkrantz Date: Wed, 8 Jul 2015 18:46:12 +0000 (-0400) Subject: properly calculate client+frame sizes during wl surface commit X-Git-Tag: upstream/0.20.0~616 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53ff8b764fc225aba28096af6a6d56045bd68efb;p=platform%2Fupstream%2Fenlightenment.git properly calculate client+frame sizes during wl surface commit --- diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 950586a..8b6060d 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -1105,8 +1105,9 @@ _e_comp_wl_surface_state_commit(E_Client *ec, E_Comp_Wl_Surface_State *state) if (ec->new_client) placed = ec->placed; - ec->w = ec->client.w = state->bw; - ec->h = ec->client.h = state->bh; + ec->client.w = state->bw; + ec->client.h = state->bh; + e_comp_object_frame_wh_adjust(ec->frame, ec->client.w, ec->client.h, &ec->w, &ec->h); } if (!e_pixmap_usable_get(ec->pixmap)) {