mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 16:12:54 +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[]
|
||||
{
|
||||
Cursor = new MenuCursor { Depth = float.MinValue },
|
||||
new TooltipContainer(Cursor) { Depth = float.MinValue }
|
||||
new Container
|
||||
{
|
||||
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