1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-23 17:13:38 +02:00

fixed auto-sized elements without children not being updated correctly

This commit is contained in:
Ell 2021-04-26 18:55:18 +02:00
parent f71f998508
commit 7792ce99c8

View file

@ -634,6 +634,8 @@ namespace MLEM.Ui.Elements {
autoSize.Y = newHeight;
foundChild = lowest;
}
} else {
autoSize.Y = 0;
}
}
if (this.SetWidthBasedOnChildren) {
@ -644,11 +646,13 @@ namespace MLEM.Ui.Elements {
autoSize.X = newWidth;
foundChild = rightmost;
}
} else {
autoSize.X = 0;
}
}
if (this.TreatSizeAsMinimum)
autoSize = Vector2.Max(autoSize, actualSize);
if (foundChild != null) {
if (autoSize != this.UnscrolledArea.Size) {
recursion++;
if (recursion >= 16) {
throw new ArithmeticException($"The area of {this} with root {this.Root?.Name} has recursively updated too often. Does its child {foundChild} contain any conflicting auto-sizing settings?");