mirror of
https://github.com/ppy/osu.git
synced 2025-02-05 02:43:16 +08:00
Move tooltips below the cursor.
This commit is contained in:
parent
6e3125e115
commit
d656090aab
@ -147,8 +147,16 @@ namespace osu.Game
|
|||||||
{
|
{
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
Cursor = new MenuCursor { Depth = float.MinValue },
|
new Container
|
||||||
new TooltipContainer(Cursor) { Depth = float.MinValue }
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Depth = float.MinValue,
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
Cursor = new MenuCursor(),
|
||||||
|
new TooltipContainer(Cursor) { Depth = -1 },
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user