Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        ipc.c 


Log Message:
Fix move window by area.
===================================================================
RCS file: /cvsroot/enlightenment/e16/e/src/ipc.c,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -3 -r1.255 -r1.256
--- ipc.c       19 Feb 2006 22:23:50 -0000      1.255
+++ ipc.c       19 Mar 2006 00:26:53 -0000      1.256
@@ -539,8 +539,16 @@
          {
             IpcPrintf("window area: %d %d", ewin->area_x, ewin->area_y);
          }
+       else if (!strcmp(param1, "move"))
+         {
+            a = b = 0;
+            sscanf(params, "%*s %*s %*s %i %i", &a, &b);
+            EwinMoveToArea(ewin, ewin->area_x + a, ewin->area_y + b);
+         }
        else
          {
+            a = ewin->area_x;
+            b = ewin->area_y;
             sscanf(params, "%*s %*s %i %i", &a, &b);
             EwinMoveToArea(ewin, a, b);
          }




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to