Skip to content

Commit

Permalink
Mark friend notifications as non-important
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Jan 22, 2025
1 parent 4cf4b8c commit 9e02334
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions osu.Game/Online/FriendPresenceNotifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ private void alertOnlineUsers()
notifications.Post(new SimpleNotification
{
Transient = true,
IsImportant = false,
Icon = FontAwesome.Solid.UserPlus,
Text = $"Online: {string.Join(@", ", onlineAlertQueue.Select(u => u.Username))}",
IconColour = colours.Green,
Expand Down Expand Up @@ -206,6 +207,7 @@ private void alertOfflineUsers()
notifications.Post(new SimpleNotification
{
Transient = true,
IsImportant = false,
Icon = FontAwesome.Solid.UserMinus,
Text = $"Offline: {string.Join(@", ", offlineAlertQueue.Select(u => u.Username))}",
IconColour = colours.Red
Expand Down

0 comments on commit 9e02334

Please sign in to comment.