flixel-ui icon indicating copy to clipboard operation
flixel-ui copied to clipboard

FlxInputText displays narrow in height when targeting html

Open buckle2000 opened this issue 7 years ago • 0 comments

When targeting html, empty FlxInputText(no characters) is narrower in height than with any characters. How to reproduce:

class PlayState extends FlxState
{
    override public function create():Void
    {
        var a = new FlxInputText();
        add(a);
        super.create();
    }

    override public function update(elapsed:Float):Void
    {
        super.update(elapsed);
    }
}

Then type in anything in that input box.

buckle2000 avatar Aug 27 '16 11:08 buckle2000