Solution for bug 560 found...
I found the problem which causes bug 560.
The character of the fonts are written to a png file in the fonts folder of each skin. Problem is that on some places the characters are to close to the next character. The space between the characters need to be increased.
The file mediaportal/mediaportal/Core/guilib/GUIFont.cs causes the behavior. The problem occured whit the changes between version 1.35 and 1.36 of that file.
Timestamp of the change: version 1.36, Thu Jul 21 10:53:50 2005 UTC
Have a look here:
http://cvs.sourceforge.net/viewcvs.py/mediaportal/mediaportal/Core/guilib/GUIFont.cs?r1=1.35&r2=1.36
Increasing spacingPerChar from 1 to 2 fixes the problem for me.
So could a dev please change the line:
spacingPerChar=1;
to
spacingPerChar=2;
Thank you!!! :lol:
I found the problem which causes bug 560.
Summary 0000560: some texts are rendered "dirty" (home screen)
Description Noticed : 30.07.05
Skin : b2
Language: English
Description :
1) Launch MP
=> Watch the button-texts of the home-buttons closely,
some have "dirty pixels" ("my Plugins" / "myPrograms")
Additional Information Also noticed in other screens (like the "Lorem ipsum" dummy text in the scroll-settings screen
=> guess it's a bug in the rendering code
The character of the fonts are written to a png file in the fonts folder of each skin. Problem is that on some places the characters are to close to the next character. The space between the characters need to be increased.
The file mediaportal/mediaportal/Core/guilib/GUIFont.cs causes the behavior. The problem occured whit the changes between version 1.35 and 1.36 of that file.
Timestamp of the change: version 1.36, Thu Jul 21 10:53:50 2005 UTC
Have a look here:
http://cvs.sourceforge.net/viewcvs.py/mediaportal/mediaportal/Core/guilib/GUIFont.cs?r1=1.35&r2=1.36
Increasing spacingPerChar from 1 to 2 fixes the problem for me.
So could a dev please change the line:
spacingPerChar=1;
to
spacingPerChar=2;
Thank you!!! :lol: