mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
add show notes instead of names
This commit is contained in:
parent
5b52896243
commit
4c88e0e249
5 changed files with 24 additions and 3 deletions
|
|
@ -375,7 +375,7 @@ public class CompactUi : WindowMediatorSubscriberBase
|
|||
var users = GetFilteredUsers()
|
||||
.OrderBy(
|
||||
u => _configService.Current.ShowCharacterNameInsteadOfNotesForVisible && !string.IsNullOrEmpty(u.PlayerName)
|
||||
? u.PlayerName
|
||||
? (_configService.Current.PreferNotesOverNamesForVisible ? u.GetNote() : u.PlayerName)
|
||||
: (u.GetNote() ?? u.UserData.AliasOrUID), StringComparer.OrdinalIgnoreCase).ToList();
|
||||
|
||||
if (_configService.Current.ReverseUserSort)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue