Regardless of the panel size setting, xfce4-iconbox is always a few pixels larger than the panel. Reproducible: Always Steps to Reproduce: 1. Start XFCE4. 2. Run xfce4-iconbox. Actual Results: Iconbox size doesn't match panel size. Expected Results: Iconbox size should match panel size. The patch is a one-liner, which I will attach after submitting the bug.
Created attachment 153 Changes the value of lsBorderWidth from 4 to 2, fixing bug 708
Ok, I'll have a look tonight. Sounds correct.
Right, I did somethng slightly different, but with the same effect. Below is the patch I used. Thanks. Index: ls_iconbox.c =================================================================== RCS file: /var/cvs/xfce/xfce4/xfce4-iconbox/src/Attic/ls_iconbox.c,v retrieving revision 1.6 diff -u -r1.6 ls_iconbox.c --- ls_iconbox.c 7 Nov 2004 10:02:43 -0000 1.6 +++ ls_iconbox.c 18 Jan 2005 15:29:52 -0000 @@ -249,7 +249,7 @@ void ls_iconbox_set_size (LSIconBox * plsib, glong lSize) { - int size = lsIconSize[lSize] + 2 * lsBorderWidth; + int size = lsIconSize[lSize] + lsBorderWidth; plsib->priv->lSize = lSize;
Awesome. Glad to have helped.
Move bug to Window Buttons; the merge of tasklist and iconbox.