mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-22 23:57:50 -05:00
quicki fix for incorrect clip tweens
This commit is contained in:
parent
84d4d044d6
commit
6a62f38c33
1 changed files with 3 additions and 8 deletions
|
@ -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();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue