mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
Fixed removing and later adding children to a scrolling panel showing the scroll bar erroneously
This commit is contained in:
parent
2463c27a5d
commit
5266d00796
2 changed files with 5 additions and 0 deletions
|
@ -52,6 +52,7 @@ Fixes
|
||||||
- Fixed Paragraph and Checkbox not reacting to SquishingGroup sizing properly
|
- Fixed Paragraph and Checkbox not reacting to SquishingGroup sizing properly
|
||||||
- Fixed TextInput and Slider still reacting to input when they are selected, but not part of the active root
|
- Fixed TextInput and Slider still reacting to input when they are selected, but not part of the active root
|
||||||
- Fixed dropdown menu panels not updating their width when the dropdown's width changes
|
- Fixed dropdown menu panels not updating their width when the dropdown's width changes
|
||||||
|
- Fixed removing and later adding children to a scrolling panel showing the scroll bar erroneously
|
||||||
|
|
||||||
### MLEM.Data
|
### MLEM.Data
|
||||||
Improvements
|
Improvements
|
||||||
|
|
|
@ -133,6 +133,10 @@ namespace MLEM.Ui.Elements {
|
||||||
if (element == this.ScrollBar)
|
if (element == this.ScrollBar)
|
||||||
throw new NotSupportedException("A panel that scrolls overflow cannot have its scroll bar removed from its list of children");
|
throw new NotSupportedException("A panel that scrolls overflow cannot have its scroll bar removed from its list of children");
|
||||||
base.RemoveChild(element);
|
base.RemoveChild(element);
|
||||||
|
|
||||||
|
// when removing children, our scroll bar might have to be hidden
|
||||||
|
// if we don't do this before adding children again, they might incorrectly assume that the scroll bar will still be visible and adjust their size accordingly
|
||||||
|
this.ScrollSetup();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
|
|
Loading…
Reference in a new issue