1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 23:00:48 +08:00

Fix depth of cursor middle being incorrect compared other curso… (#7205)

Fix depth of cursor middle being incorrect compared other cursor elements
This commit is contained in:
Dean Herbert
2019-12-15 14:43:56 +09:00
committed by GitHub
Unverified
@@ -28,18 +28,18 @@ namespace osu.Game.Rulesets.Osu.Skinning
InternalChildren = new[]
{
ExpandTarget = new NonPlayfieldSprite
{
Texture = skin.GetTexture("cursor"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
new NonPlayfieldSprite
{
Texture = skin.GetTexture("cursormiddle"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
ExpandTarget = new NonPlayfieldSprite
{
Texture = skin.GetTexture("cursor"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
}
};
}