mirror of
https://github.com/ppy/osu.git
synced 2026-05-29 04:49:58 +08:00
Update some out of date code pieces
This commit is contained in:
@@ -61,8 +61,8 @@ namespace osu.Game.Configuration
|
||||
|
||||
SetDefault(OsuSetting.ShowOnlineExplicitContent, false);
|
||||
|
||||
Set(OsuSetting.ChatHighlightName, true);
|
||||
Set(OsuSetting.ChatMessageNotification, true);
|
||||
SetDefault(OsuSetting.ChatHighlightName, true);
|
||||
SetDefault(OsuSetting.ChatMessageNotification, true);
|
||||
|
||||
// Audio
|
||||
SetDefault(OsuSetting.VolumeInactive, 0.25, 0, 1, 0.01);
|
||||
|
||||
@@ -19,12 +19,12 @@ namespace osu.Game.Overlays.Settings.Sections.Online
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Show a notification popup when someone says your name",
|
||||
Bindable = config.GetBindable<bool>(OsuSetting.ChatHighlightName)
|
||||
Current = config.GetBindable<bool>(OsuSetting.ChatHighlightName)
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = "Show private message notifications",
|
||||
Bindable = config.GetBindable<bool>(OsuSetting.ChatMessageNotification)
|
||||
Current = config.GetBindable<bool>(OsuSetting.ChatMessageNotification)
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user