1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-02 06:49:54 +08:00

Merge remote-tracking branch 'refs/remotes/ppy/master' into beatsync_fixes

This commit is contained in:
EVAST9919
2017-06-23 10:00:51 +03:00
Unverified
2 changed files with 5 additions and 1 deletions
@@ -63,8 +63,12 @@ namespace osu.Game.Graphics.UserInterface
X = (value & Anchor.x2) > 0 ? SIZE_RETRACTED.X * shear * 0.5f : 0;
Remove(c1);
Remove(c2);
c1.Depth = (value & Anchor.x2) > 0 ? 0 : 1;
c2.Depth = (value & Anchor.x2) > 0 ? 1 : 0;
Add(c1);
Add(c2);
}
}