mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Fix origins not being set correctly when reverting from reversed playfield.
This commit is contained in:
@ -81,7 +81,7 @@ namespace osu.Game.Rulesets.Timing
|
|||||||
{
|
{
|
||||||
RelativeChildSize = new Vector2((ScrollingAxes & Axes.X) > 0 ? (float)VisibleTimeRange : 1, (ScrollingAxes & Axes.Y) > 0 ? (float)VisibleTimeRange : 1);
|
RelativeChildSize = new Vector2((ScrollingAxes & Axes.X) > 0 ? (float)VisibleTimeRange : 1, (ScrollingAxes & Axes.Y) > 0 ? (float)VisibleTimeRange : 1);
|
||||||
RelativeChildOffset = Vector2.Zero;
|
RelativeChildOffset = Vector2.Zero;
|
||||||
Anchor = Anchor = Anchor.TopLeft;
|
Origin = Anchor = Anchor.TopLeft;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user