When the window size is 1x1, then the eina_tiler skips it as rounding.
So, we add an additional edge value to window's geometry to calculate visibility correctly.
Change-Id: I3ee6fa69fc5d84e9cf1e9ed64108597489da0f6a
}
e_client_geometry_get(ec, &x, &y, &w, &h);
+ w = w + edge;
+ h = h + edge;
+
ec_vis = ec_opaque = skip_rot_pending_show = is_vis_on_skip = EINA_FALSE;
skip_by_pending_show = 0;
calc_region = EINA_TRUE;
EINA_RECTANGLE_SET(&r,
x,
y,
- w + edge,
- h + edge);
+ w,
+ h);
eina_tiler_rect_del(t, &r);
if (eina_tiler_empty(t))