Rename configuration variables and refactor lots more

This commit is contained in:
Dean Herbert
2021-06-11 16:37:31 +09:00
parent 3d645608eb
commit 20759657de
3 changed files with 46 additions and 62 deletions

View File

@ -19,12 +19,12 @@ namespace osu.Game.Overlays.Settings.Sections.Online
new SettingsCheckbox
{
LabelText = "Show a notification when someone mentions your name",
Current = config.GetBindable<bool>(OsuSetting.ChatHighlightName)
Current = config.GetBindable<bool>(OsuSetting.NotifyOnUsernameMentioned)
},
new SettingsCheckbox
{
LabelText = "Show a notification when you receive a private message",
Current = config.GetBindable<bool>(OsuSetting.ChatMessageNotification)
Current = config.GetBindable<bool>(OsuSetting.NotifyOnPrivateMessage)
},
};
}