mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
fixed panels overflowing incorrectly in some dimensions
This commit is contained in:
parent
8758ae88b9
commit
287885b96d
1 changed files with 3 additions and 3 deletions
|
@ -31,7 +31,7 @@ namespace MLEM.Ui.Elements {
|
|||
// the "real" first child is the scroll bar, which we want to ignore
|
||||
var firstChild = this.Children[1];
|
||||
// as all children have to be auto-aligned, moving the first one up will move all others
|
||||
firstChild.PositionOffset = new Vector2(firstChild.PositionOffset.X, -value.Ceil());
|
||||
firstChild.PositionOffset = new Vector2(firstChild.PositionOffset.X, -value.Floor());
|
||||
this.ForceUpdateArea();
|
||||
},
|
||||
CanAutoAnchorsAttach = false
|
||||
|
@ -67,8 +67,8 @@ namespace MLEM.Ui.Elements {
|
|||
var firstChild = this.Children[1];
|
||||
var lowestChild = this.GetLowestChild(false, true);
|
||||
// the max value of the scrollbar is the amount of non-scaled pixels taken up by overflowing components
|
||||
var childrenHeight = lowestChild.Area.Bottom - firstChild.Area.Top;
|
||||
this.ScrollBar.MaxValue = (childrenHeight - this.Area.Height) / this.Scale + this.ChildPadding.Y * 2;
|
||||
var childrenHeight = lowestChild.Area.Bottom + 1 - firstChild.Area.Top;
|
||||
this.ScrollBar.MaxValue = ((childrenHeight - this.Area.Height) / this.Scale + this.ChildPadding.Y * 2).Floor();
|
||||
|
||||
// update the render target
|
||||
var targetArea = this.GetRenderTargetArea();
|
||||
|
|
Loading…
Reference in a new issue