1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-14 01:50:44 +02:00

disallow removing the scroll bar from a panel

This commit is contained in:
Ell 2021-02-07 18:30:56 +01:00
parent a75d04cffc
commit 9146d7f2ba

View file

@ -108,8 +108,11 @@ namespace MLEM.Ui.Elements {
/// <inheritdoc />
public override void ForceUpdateSortedChildren() {
base.ForceUpdateSortedChildren();
if (this.scrollOverflow)
if (this.scrollOverflow) {
if (this.ScrollBar.Parent != this)
throw new NotSupportedException("A panel that scrolls overflow cannot have its scroll bar removed from its list of children");
this.relevantChildrenDirty = true;
}
}
/// <inheritdoc />