use 0,0 for start rect in shape cutter

This commit is contained in:
Mike Blumenkrantz 2014-06-02 08:40:00 -04:00
parent 59657b2ec6
commit 5d6fc9cc6f
1 changed files with 1 additions and 1 deletions

View File

@ -681,7 +681,7 @@ _e_comp_shapes_update_job(E_Comp *c)
tb = eina_tiler_new(c->man->w, c->man->h);
eina_tiler_tile_size_set(tb, 1, 1);
/* background */
eina_tiler_rect_add(tb, &(Eina_Rectangle){c->man->x, c->man->y, c->man->w, c->man->h});
eina_tiler_rect_add(tb, &(Eina_Rectangle){0, 0, c->man->w, c->man->h});
ec = e_client_bottom_get(c);
if (ec) o = ec->frame;