win: correct setting of wayland opaque region

Summary: Opaque region calculation was incorrect.

Reviewers: zmike, devilhorns

Differential Revision: https://phab.enlightenment.org/D2878
This commit is contained in:
Derek Foreman 2015-07-28 15:39:46 -04:00 committed by Chris Michael
parent 410e501aa2
commit 5022b2fe90
1 changed files with 1 additions and 1 deletions

View File

@ -1242,7 +1242,7 @@ _elm_win_opaque_update(Elm_Win_Data *sd)
edje_object_part_geometry_get(sd->frame_obj, "elm.spacer.opaque",
&ox, &oy, &ow, &oh);
ecore_wl_window_opaque_region_set(sd->wl.win, ox, oy, ow - 50, oh);//ow - ox, oh - oy);
ecore_wl_window_opaque_region_set(sd->wl.win, ox, oy, ow, oh);
}
#endif