quicki fix for incorrect clip tweens

This commit is contained in:
Cameron Taylor 2024-06-04 16:51:27 -04:00
parent 84d4d044d6
commit 6a62f38c33

View file

@ -671,14 +671,9 @@ class SongMenuItem extends FlxSpriteGroup
ranking.alpha = this.selected ? 1 : 0.7; ranking.alpha = this.selected ? 1 : 0.7;
ranking.color = this.selected ? 0xFFFFFFFF : 0xFFAAAAAA; ranking.color = this.selected ? 0xFFFFFFFF : 0xFFAAAAAA;
if (selected) if (songText.tooLong) songText.resetText();
{
if (songText.tooLong == true) songText.initMove(); if (selected && songText.tooLong) songText.initMove();
}
else
{
if (songText.tooLong == true) songText.resetText();
}
} }
} }