Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion haxe/ui/core/ComponentValidation.hx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class ComponentValidation extends ComponentEvents {
_invalidateCount++;

//we track the invalidate count to check if we are in an infinite loop or serious bug because it affects performance
if (this._invalidateCount >= 10) {
if (this._invalidateCount >= 100) {
throw 'The validation queue returned too many times during validation. This may be an infinite loop. Try to avoid doing anything that calls invalidate() during validation.';
}

Expand Down