Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        dock.c 


Log Message:
Fix bug in dockapp placement (wrapping at right/lower edge). Fix by davey?

===================================================================
RCS file: /cvs/e/e16/e/src/dock.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -3 -r1.34 -r1.35
--- dock.c      16 Apr 2006 22:27:06 -0000      1.34
+++ dock.c      26 Dec 2006 22:31:13 -0000      1.35
@@ -112,7 +112,7 @@
             }
        }
 
-   if (x < 0 || y < 0 || x + w >= VRoot.w || y + h >= VRoot.h)
+   if (x < 0 || y < 0 || x + w > VRoot.w || y + h > VRoot.h)
      {
        x = VRoot.w - w / 2;
        y = VRoot.h - h / 2;



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to