diff --git a/MLEM.Ui/Elements/Element.cs b/MLEM.Ui/Elements/Element.cs index 7259417..1a7c885 100644 --- a/MLEM.Ui/Elements/Element.cs +++ b/MLEM.Ui/Elements/Element.cs @@ -306,12 +306,8 @@ namespace MLEM.Ui.Elements { } } } - - var newArea = new Rectangle(pos, actualSize); - if (newArea == this.area) - return; - this.area = newArea; + this.area = new Rectangle(pos, actualSize); this.OnAreaUpdated?.Invoke(this); foreach (var child in this.Children)