From 9c4fd57ede14431a198fd344bb5d7a14302f4bf4 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 25 Oct 1999 23:42:30 +0000 Subject: [PATCH] Mon Oct 25 23:52:42 PDT 1999 (Raster) add that to TODO for tomorrow... SVN revision: 976 --- src/ChangeLog | 7 +++++++ src/TODO | 1 + src/iconify.c | 12 ++++++++++-- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5a7c9b6b..de003db6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 ArrangeRects() + +------------------------------------------------------------------------------- + +Mon Oct 25 23:52:42 PDT 1999 +(Raster) + +add that to TODO for tomorrow... diff --git a/src/TODO b/src/TODO index 793f3449..af6fdbe9 100644 --- a/src/TODO +++ b/src/TODO @@ -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!) New enlightenment man page (dox to pod to man script courtesy Tom Christiansen) 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): 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) diff --git a/src/iconify.c b/src/iconify.c index 2cbf05e9..82835cc3 100644 --- a/src/iconify.c +++ b/src/iconify.c @@ -1305,9 +1305,17 @@ IB_FindIcon(Iconbox * ib, int px, int py) xx = x; yy = y; if (ib->orientation) - xx += (ib->iconsize - w) / 2; + { + if (ib->draw_icon_base) + yy += (ib->iconsize - h) / 2; + xx += (ib->iconsize - w) / 2; + } 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)) && (px < (xx + w + 1)) && (py < (yy + h + 1)))