projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63002a5
)
elm_win: use screen coordinates for updating location
67/66667/3
author
MinJeong Kim
<minjjj.kim@samsung.com>
Wed, 20 Apr 2016 05:14:24 +0000
(14:14 +0900)
committer
MinJeong Kim
<minjjj.kim@samsung.com>
Mon, 25 Apr 2016 05:08:13 +0000
(22:08 -0700)
Change-Id: I6cd59b66b054e3bdf596b75042d72a2963daa7f6
src/lib/elm_win.c
patch
|
blob
|
history
diff --git
a/src/lib/elm_win.c
b/src/lib/elm_win.c
index 432e61d267c9b1a2bf9225f0d0658027e4b185e7..222dfb570c2eafe7baf19a2c7cd716beb077f0c3 100644
(file)
--- a/
src/lib/elm_win.c
+++ b/
src/lib/elm_win.c
@@
-1360,7
+1360,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, oh);
- ecore_wl_window_update_location(sd->wl.win,
ox,
oy);
+ ecore_wl_window_update_location(sd->wl.win,
sd->screen.x + ox, sd->screen.y +
oy);
}
#endif