illogict pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f193f90ce8bb5909bf53e21b66a124420fc310ae
commit f193f90ce8bb5909bf53e21b66a124420fc310ae Author: Chidambar Zinnoury <chidambar.zinno...@zefla.fr> Date: Mon Apr 21 23:04:47 2014 +0200 Bugfix: e syscon: Use correct coordinates to have the dialog centered on multiple zones. --- src/modules/syscon/e_syscon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/syscon/e_syscon.c b/src/modules/syscon/e_syscon.c index e1bde11..898631c 100644 --- a/src/modules/syscon/e_syscon.c +++ b/src/modules/syscon/e_syscon.c @@ -264,10 +264,10 @@ e_syscon_show(E_Zone *zone, const char *defact) w = mw; if (w > zw) w = zw; - x = zx - zone->x + (zw - w) / 2; + x = zx + (zw - w) / 2; h = mh; if (h > zh) h = zh; - y = zy - zone->y + (zh - h) / 2; + y = zy + (zh - h) / 2; evas_object_geometry_set(popup, x, y, w, h); --