mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
fixed y offset not affecting elements with AutoInlineIgnoreOverflow anchor
This commit is contained in:
parent
dddcb664d7
commit
00ce8bb229
1 changed files with 1 additions and 1 deletions
|
@ -588,7 +588,7 @@ namespace MLEM.Ui.Elements {
|
|||
break;
|
||||
case Anchor.AutoInlineIgnoreOverflow:
|
||||
pos.X = prevArea.Right + this.ScaledOffset.X;
|
||||
pos.Y = prevArea.Y;
|
||||
pos.Y = prevArea.Y + this.ScaledOffset.Y;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue