1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-31 14:25:10 +08:00

Mark friend notifications as non-important

This commit is contained in:
Dean Herbert 2025-01-22 16:36:48 +09:00
parent 4cf4b8c73d
commit 9e023340b0
No known key found for this signature in database

View File

@ -170,6 +170,7 @@ namespace osu.Game.Online
notifications.Post(new SimpleNotification
{
Transient = true,
IsImportant = false,
Icon = FontAwesome.Solid.UserPlus,
Text = $"Online: {string.Join(@", ", onlineAlertQueue.Select(u => u.Username))}",
IconColour = colours.Green,
@ -206,6 +207,7 @@ namespace osu.Game.Online
notifications.Post(new SimpleNotification
{
Transient = true,
IsImportant = false,
Icon = FontAwesome.Solid.UserMinus,
Text = $"Offline: {string.Join(@", ", offlineAlertQueue.Select(u => u.Username))}",
IconColour = colours.Red