mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 08:03:52 +09:00
Merge pull request #2607 from jorolf/badge-ordering
Ensure profile badges are ordered correctly
This commit is contained in:
@ -107,13 +107,20 @@ namespace osu.Game.Overlays.Profile.Header
|
|||||||
visibleBadge = 0;
|
visibleBadge = 0;
|
||||||
|
|
||||||
badgeFlowContainer.Clear();
|
badgeFlowContainer.Clear();
|
||||||
foreach (var badge in badges)
|
for (var index = 0; index < badges.Length; index++)
|
||||||
{
|
{
|
||||||
LoadComponentAsync(new DrawableBadge(badge)
|
int displayIndex = index;
|
||||||
|
LoadComponentAsync(new DrawableBadge(badges[index])
|
||||||
{
|
{
|
||||||
Anchor = Anchor.TopCentre,
|
Anchor = Anchor.TopCentre,
|
||||||
Origin = Anchor.TopCentre,
|
Origin = Anchor.TopCentre,
|
||||||
}, badgeFlowContainer.Add);
|
}, asyncBadge =>
|
||||||
|
{
|
||||||
|
badgeFlowContainer.Add(asyncBadge);
|
||||||
|
|
||||||
|
// load in stable order regardless of async load order.
|
||||||
|
badgeFlowContainer.SetLayoutPosition(asyncBadge, displayIndex);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user