Skip to content

Commit

Permalink
ensure textinput is always at very top
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Nov 16, 2023
1 parent dc895ed commit 206ab70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion haxe/ui/backend/ComponentImpl.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ class ComponentImpl extends ComponentBase {
super.createTextInput(text);
_textInput.attach();
_textInput.tf.visible = false;
FlxG.addChildBelowMouse(_textInput.tf);
FlxG.addChildBelowMouse(_textInput.tf, 0xffffff);
/*
Toolkit.callLater(function() { // lets show it a frame later so its had a chance to reposition
if (_textInput != null) {
Expand Down

0 comments on commit 206ab70

Please sign in to comment.