|
From: <enl...@li...> - 2004-03-07 13:58:35
|
Enlightenment CVS committal
Author : kwo
Project : e16
Module : e
Dir : e16/e/src
Modified Files:
snaps.c
Log Message:
... and nail down iconboxes and pagers again.
===================================================================
RCS file: /cvsroot/enlightenment/e16/e/src/snaps.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -3 -r1.61 -r1.62
--- snaps.c 29 Feb 2004 01:30:18 -0000 1.61
+++ snaps.c 7 Mar 2004 13:35:00 -0000 1.62
@@ -629,16 +629,8 @@
if (!sn)
return;
sn->use_xy = 1;
- if (((ewin->pager) || (ewin->ibox)) && (ewin->border))
- {
- sn->x = ewin->x + ewin->border->border.left;
- sn->y = ewin->y + ewin->border->border.top;
- }
- else
- {
- sn->x = ewin->x;
- sn->y = ewin->y;
- }
+ sn->x = ewin->x;
+ sn->y = ewin->y;
sn->area_x = ewin->area_x;
sn->area_y = ewin->area_y;
}
|