We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f4d35 commit 0abcd75Copy full SHA for 0abcd75
flixel/addons/ui/FlxUITypedButton.hx
@@ -179,9 +179,9 @@ class FlxUITypedButton<T:FlxSprite> extends FlxTypedButton<T> implements IFlxUIB
179
{
180
super.graphicLoaded();
181
182
- setupAnimation(getToggleStatusAnimation(NORMAL, 3));
183
- setupAnimation(getToggleStatusAnimation(HIGHLIGHT, #if FLX_MOUSE 4 #else 3 #end));
184
- setupAnimation(getToggleStatusAnimation(PRESSED, 5));
+ setupAnimation(getToggleStatusAnimation(NORMAL), 3);
+ setupAnimation(getToggleStatusAnimation(HIGHLIGHT), #if FLX_MOUSE 4 #else 3 #end);
+ setupAnimation(getToggleStatusAnimation(PRESSED), 5);
185
186
if (_autoCleanup)
187
0 commit comments