Skip to content

Commit

Permalink
Added "release.bat" for making a haxelib release
Browse files Browse the repository at this point in the history
- Fixed instances of `FlxInputText` instead of `FlxTextInput`
  • Loading branch information
Starmapo committed Dec 4, 2023
1 parent c5da4a7 commit 110f835
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flixel/addons/text/internal/FlxBaseTextInput.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,7 @@ class CustomTextField extends TextField
textParent = parent;
stage = FlxG.stage;

// Remove event listeners, as these are handled by `FlxInputText`.
// Remove event listeners, as these are handled by `FlxTextInput`.
removeEventListener(MouseEvent.MOUSE_DOWN, this_onMouseDown);
removeEventListener(FocusEvent.FOCUS_IN, this_onFocusIn);
removeEventListener(FocusEvent.FOCUS_OUT, this_onFocusOut);
Expand Down Expand Up @@ -1383,7 +1383,7 @@ class CustomTextField extends TextField
{
stage.window.textInputEnabled = true;

// Removed event listeners, as these are handled by `FlxInputText`.
// Removed event listeners, as these are handled by `FlxTextInput`.

__inputEnabled = true;
__stopCursorTimer();
Expand Down
1 change: 1 addition & 0 deletions release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7z a -tzip -x!.git -x!release.bat flixel-text-input.zip

0 comments on commit 110f835

Please sign in to comment.