Skip to content

Commit

Permalink
FlxBitmapText: fix alpha not working, closes HaxeFlixel#1877
Browse files Browse the repository at this point in the history
  • Loading branch information
Gama11 authored and Aurel300 committed Apr 17, 2018
1 parent 9ede403 commit eb74694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flixel/text/FlxBitmapText.hx
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ class FlxBitmapText extends FlxSprite

override private function set_alpha(value:Float):Float
{
alpha = value;
super.set_alpha(value);
if (FlxG.renderBlit)
{
pendingTextBitmapChange = true;
Expand Down

0 comments on commit eb74694

Please sign in to comment.