Expose groupings editor

This commit is contained in:
Dean Herbert
2018-11-16 20:30:12 +09:00
parent 67bb428aef
commit cf0976955b
6 changed files with 59 additions and 15 deletions

View File

@ -6,6 +6,7 @@ using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input.Events;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.Settings;
@ -115,5 +116,15 @@ namespace osu.Game.Tournament.Screens.Ladder.Components
editorInfo.Selected.Value.Losers.Value = losers;
};
}
protected override bool OnHover(HoverEvent e)
{
return false;
}
protected override void OnHoverLost(HoverLostEvent e)
{
}
}
}