Skip to content

Commit

Permalink
BaseDividedBox: fix removeRawChildren(), which was accidentally calli…
Browse files Browse the repository at this point in the history
…ng itself instead of removeChildren()
  • Loading branch information
joshtynjala committed Nov 22, 2023
1 parent 6bebb90 commit 52912ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/feathers/controls/supportClasses/BaseDividedBox.hx
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ class BaseDividedBox extends FeathersControl {
private function removeRawChildren(beginIndex:Int = 0, endIndex:Int = 0x7FFFFFFF):Void {
var oldBypass = this._displayListBypassEnabled;
this._displayListBypassEnabled = false;
this.removeRawChildren(beginIndex, endIndex);
this.removeChildren(beginIndex, endIndex);
this._displayListBypassEnabled = oldBypass;
}

Expand Down

0 comments on commit 52912ae

Please sign in to comment.