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
commit ef4718dfaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -28,18 +28,18 @@ private void load(ISkinSource skin)
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,
}
};
}