Ottodix / Eole-foobar-theme

Eole blows gently into your ear his nicest melodies.
1.29k stars 85 forks source link

Font change in the Library #278

Closed kcoure closed 5 months ago

kcoure commented 5 months ago

image

Is it possible to change the font for this location? If anything, I changed the artist and album name on purpose, but that's not the point. I'd like to remove the slant of the font. Is there any way to do that? Thanks!

JadeTank commented 5 months ago

There's no way to do this built in to the skin, but you can alter this yourself by editing the code.

In the file WSHgraphicbrowser_trackinfos.js you can change the font by editing lines 2399 and 2402, which should be var first_row_font = g_font.italicplus5;

The plus5 refers to the size, so to set it to regular text change the line to var first_row_font = g_font.plus5; or to bold it var first_row_font = g_font.boldplus5;

kcoure commented 5 months ago

Thank you for your help! It worked.