1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 02:17:25 +08:00
osu-lazer/osu.Game/Screens/Play/PlayerSettings/PlayerSettingsGroup.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
668 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Game.Overlays;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play.PlayerSettings
2017-05-17 15:36:57 +08:00
{
public class PlayerSettingsGroup : SettingsToolboxGroup
2017-05-17 15:36:57 +08:00
{
public PlayerSettingsGroup(string title)
: base(title)
2017-05-17 15:36:57 +08:00
{
}
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
{
base.OnHover(e);
// Importantly, return true to correctly take focus away from PlayerLoader.
return true;
2017-05-30 17:23:53 +08:00
}
2017-05-17 15:36:57 +08:00
}
}