Marty Jack wrote:This is adjusted in SVN r1834.
Note, it is just as valuable for the font to get smaller when the icon is smaller. This allows people on tiny screens to run with only a 16 pixel panel.
Thanks again Marty!
I understand the situation and is really very useful to get the fonts smaller when the icons are smaller too.
Anyway I made some alterations in the PKGBUILD, the Archlinux package building system, of the lxpanel-svn and I made a patch to use the font size 10 if the icon size is >=20 ou <=36.
--- src/panel_orig.c 2009-07-16 13:44:20.000000000 -0300
+++ src/panel.c 2009-07-16 13:45:54.480374343 -0300
@@ -973,7 +973,7 @@
int font_desc;
if (p->icon_size < 20)
font_desc = 9;
- else if (p->icon_size >= 20 && p->icon_size < 26)
+ else if (p->icon_size >= 20 && p->icon_size <= 36)
font_desc = 10;
else
font_desc = 12;
But no need to alter this in the source of lxpanel. I made this because is better to me, but the way that the lxpanel is in the moment is very very good, I think other users think that too.
If other users suggest to alter the size of fonts, you should think about that, but in the moment it's ok and so good.
Thanks again!!!
