mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Add modes text to groups tooltip
This commit is contained in:
@ -20,7 +20,7 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
||||
{
|
||||
public partial class GroupBadge : Container, IHasTooltip
|
||||
{
|
||||
public LocalisableString TooltipText { get; }
|
||||
public LocalisableString TooltipText { get; set; }
|
||||
|
||||
public int TextSize { get; set; } = 12;
|
||||
|
||||
@ -34,7 +34,9 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
||||
Masking = true;
|
||||
CornerRadius = 8;
|
||||
|
||||
|
||||
TooltipText = group.Name;
|
||||
|
||||
}
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
@ -79,6 +81,14 @@ namespace osu.Game.Overlays.Profile.Header.Components
|
||||
})).ToList()
|
||||
);
|
||||
}
|
||||
|
||||
if (group.Playmodes?.Length > 0)
|
||||
{
|
||||
var badgeModesList = group.Playmodes.Select(p => rulesets.GetRuleset(p)?.Name).ToList();
|
||||
|
||||
string modesDisplay = string.Join(", ", badgeModesList);
|
||||
this.TooltipText += $" ({modesDisplay})";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user