mirror of
https://github.com/ppy/osu.git
synced 2025-02-07 20:52:56 +08:00
Mark friend notifications as non-important
This commit is contained in:
parent
4cf4b8c73d
commit
9e023340b0
@ -170,6 +170,7 @@ namespace osu.Game.Online
|
|||||||
notifications.Post(new SimpleNotification
|
notifications.Post(new SimpleNotification
|
||||||
{
|
{
|
||||||
Transient = true,
|
Transient = true,
|
||||||
|
IsImportant = false,
|
||||||
Icon = FontAwesome.Solid.UserPlus,
|
Icon = FontAwesome.Solid.UserPlus,
|
||||||
Text = $"Online: {string.Join(@", ", onlineAlertQueue.Select(u => u.Username))}",
|
Text = $"Online: {string.Join(@", ", onlineAlertQueue.Select(u => u.Username))}",
|
||||||
IconColour = colours.Green,
|
IconColour = colours.Green,
|
||||||
@ -206,6 +207,7 @@ namespace osu.Game.Online
|
|||||||
notifications.Post(new SimpleNotification
|
notifications.Post(new SimpleNotification
|
||||||
{
|
{
|
||||||
Transient = true,
|
Transient = true,
|
||||||
|
IsImportant = false,
|
||||||
Icon = FontAwesome.Solid.UserMinus,
|
Icon = FontAwesome.Solid.UserMinus,
|
||||||
Text = $"Offline: {string.Join(@", ", offlineAlertQueue.Select(u => u.Username))}",
|
Text = $"Offline: {string.Join(@", ", offlineAlertQueue.Select(u => u.Username))}",
|
||||||
IconColour = colours.Red
|
IconColour = colours.Red
|
||||||
|
Loading…
Reference in New Issue
Block a user