mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
skip unnecessary relevant children updates for panels
This commit is contained in:
parent
115b05beaa
commit
cf48fc372e
1 changed files with 7 additions and 4 deletions
|
@ -115,10 +115,13 @@ namespace MLEM.Ui.Elements {
|
|||
private void ScrollChildren() {
|
||||
if (!this.scrollOverflow)
|
||||
return;
|
||||
var offset = -this.ScrollBar.CurrentValue;
|
||||
foreach (var child in this.GetChildren(c => c != this.ScrollBar, true))
|
||||
child.ScrollOffset = new Vector2(0, offset);
|
||||
this.relevantChildrenDirty = true;
|
||||
var offset = new Vector2(0, -this.ScrollBar.CurrentValue);
|
||||
foreach (var child in this.GetChildren(c => c != this.ScrollBar, true)) {
|
||||
if (child.ScrollOffset != offset) {
|
||||
child.ScrollOffset = offset;
|
||||
this.relevantChildrenDirty = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
|
|
Loading…
Reference in a new issue