We changed code not to send configure event if the buffer size is same to the ec's size in ec->frame's
resize callback.
Change-Id: I8a4ca2e51c4226d33e983ae8c99143953e060606
}
else if ((!ec->fullscreen) && (!ec->maximized) &&
(!ec->comp_data->maximize_pre))
- _e_comp_wl_configure_send(ec, 1, 1);
+ {
+ int pw = 0;
+ int ph = 0;
+ e_pixmap_size_get(ec->pixmap, &pw, &ph);
+ if ((pw != ec->w) || (ph != ec->h))
+ {
+ _e_comp_wl_configure_send(ec, 1, 1);
+ }
+ }
if (ec->comp_data->sub.below_obj)
e_comp_wl_subsurface_bg_rectangle_map_apply(ec);