Show listing graph; Slight refactor

This commit is contained in:
HoutarouOreki
2018-07-21 10:05:12 +02:00
parent ba0430752c
commit b5207d65f7
5 changed files with 21 additions and 6 deletions

View File

@ -101,6 +101,7 @@ namespace osu.Game.Overlays
else
foreach (StreamBadge item in Streams.BadgesContainer.Children)
item.Deactivate();
chart.ShowChart();
};
content.OnBuildChanged = () =>
{
@ -155,6 +156,7 @@ namespace osu.Game.Overlays
Streams.BadgesContainer.Clear();
foreach (APIChangelog item in res)
Streams.BadgesContainer.Add(new StreamBadge(item));
chart.ShowChart();
};
api.Queue(req);
}