osu/osu.Game/Overlays/Settings/Sections/Online/AlertsAndPrivacySettings.cs

33 lines
1.1 KiB
C#
Raw Normal View History

2019-12-15 23:45:33 +00:00
// 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.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Configuration;
namespace osu.Game.Overlays.Settings.Sections.Online
{
public class AlertsAndPrivacySettings : SettingsSubsection
{
protected override string Header => "Alerts and Privacy";
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
{
Children = new Drawable[]
{
new SettingsCheckbox
{
2021-06-11 07:11:37 +00:00
LabelText = "Show a notification when someone mentions your name",
2021-05-26 07:01:20 +00:00
Current = config.GetBindable<bool>(OsuSetting.ChatHighlightName)
2019-12-15 23:45:33 +00:00
},
new SettingsCheckbox
{
2021-06-11 07:11:37 +00:00
LabelText = "Show a notification when you receive a private message",
2021-05-26 07:01:20 +00:00
Current = config.GetBindable<bool>(OsuSetting.ChatMessageNotification)
2019-12-15 23:45:33 +00:00
},
};
}
}
}