forked from e16/e16
1
0
Fork 0

Mon Oct 25 23:52:42 PDT 1999

(Raster)

add that to TODO for tomorrow...


SVN revision: 976
This commit is contained in:
Carsten Haitzler 1999-10-25 23:42:30 +00:00
parent bd402b3f5d
commit 9c4fd57ede
3 changed files with 18 additions and 2 deletions

View File

@ -3730,3 +3730,10 @@ Mon Oct 25 23:51:46 PDT 1999
fixed a potential coredump (though I'm not sure how that happened) in fixed a potential coredump (though I'm not sure how that happened) in
ArrangeRects() ArrangeRects()
-------------------------------------------------------------------------------
Mon Oct 25 23:52:42 PDT 1999
(Raster)
add that to TODO for tomorrow...

View File

@ -2,6 +2,7 @@ The 0.16.0 series:
We still have a few revisions / bugfixes to the 0.16 series to work on (we're taking input via email right now - keep the bug reports coming!) We still have a few revisions / bugfixes to the 0.16 series to work on (we're taking input via email right now - keep the bug reports coming!)
New enlightenment man page (dox to pod to man script courtesy Tom Christiansen) New enlightenment man page (dox to pod to man script courtesy Tom Christiansen)
There will be an 0.16.1 release (hopefully this weekend) There will be an 0.16.1 release (hopefully this weekend)
I think there's a small bug in transulcent move in 24/32bpp on xfree 3.3.x...
The Road to 0.17 (post 0.16.x): The Road to 0.17 (post 0.16.x):
File Manager Preview Application (you'll hopefully get a chance to see a little bit of a preview of what E's filemanager will look like) File Manager Preview Application (you'll hopefully get a chance to see a little bit of a preview of what E's filemanager will look like)

View File

@ -1305,9 +1305,17 @@ IB_FindIcon(Iconbox * ib, int px, int py)
xx = x; xx = x;
yy = y; yy = y;
if (ib->orientation) if (ib->orientation)
xx += (ib->iconsize - w) / 2; {
if (ib->draw_icon_base)
yy += (ib->iconsize - h) / 2;
xx += (ib->iconsize - w) / 2;
}
else else
yy += (ib->iconsize - h) / 2; {
if (ib->draw_icon_base)
xx += (ib->iconsize - w) / 2;
yy += (ib->iconsize - h) / 2;
}
if ((px >= (xx - 1)) && (py >= (yy - 1)) && if ((px >= (xx - 1)) && (py >= (yy - 1)) &&
(px < (xx + w + 1)) && (px < (xx + w + 1)) &&
(py < (yy + h + 1))) (py < (yy + h + 1)))