Skip to content

Commit

Permalink
Fix for #233
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Sep 18, 2018
1 parent 83d3b5f commit 9515ebb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions haxe/ui/core/TextInput.hx
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ class TextInput extends TextInputBase implements IValidating {

_width = value;
invalidate(InvalidationFlags.DISPLAY);
validateDisplay(); // TODO: why is this needed??
return value;
}

Expand All @@ -147,6 +148,7 @@ class TextInput extends TextInputBase implements IValidating {

_height = value;
invalidate(InvalidationFlags.DISPLAY);
validateDisplay(); // TODO: why is this needed??
return value;
}

Expand Down

0 comments on commit 9515ebb

Please sign in to comment.