It is currently April 24th, 2024, 4:50 pm

Help: New font made my music player go weird

Get help with creating, editing & fixing problems with skins
MoonlitRose
Posts: 1
Joined: December 8th, 2020, 11:46 pm

Help: New font made my music player go weird

Post by MoonlitRose »

So, ive been trying to get a spotify thing working, and when I swapped the font the title and artist name got squished together. I messed with the font size but it doesnt fix the problem. Is there a way to make space between them without messing with the font?
The player is here https://github.com/redsaph/cleartext/releases/tag/6.0
and the font is here https://www.dafont.com/8bit-wonder.font
Last edited by MoonlitRose on December 9th, 2020, 6:04 pm, edited 1 time in total.
User avatar
balala
Rainmeter Sage
Posts: 16166
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Help: New font made my music player go weird

Post by balala »

MoonlitRose wrote: December 9th, 2020, 12:06 am So, ive been trying to get a spotify thing working, and when I swapped the font the title and artist name got squished together. I messed with the font size but it doesnt fix the problem. Is there a way to make space between them without messing with the font?
Yep, there definitely is. You have to move the [TopText1] / [TopText2] and [BottomText1] / [BottomText2] meters a little bit up and respectivelly down. For this you have to modify the Y options of these measures. For instance replace these options as it follows:

Code: Select all

[TopText2]
...
Y=(#ypos_containertexttop#-10)
...

[TopText1]
...
Y=(#ypos_containertexttop#-10)
...

[BottomText2]
...
Y=(#ypos_containertextbtm#+10)
...

[BottomText1]
...
Y=(#ypos_containertextbtm#+10)
...