mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 17:07:35 +09:00
Fix results screen not showing first tab correctly
This commit is contained in:
parent
a82b1ca9ad
commit
a6ddcd78d4
@ -256,9 +256,12 @@ namespace osu.Game.Screens.Ranking
|
||||
}
|
||||
};
|
||||
|
||||
foreach (var t in CreateResultPages())
|
||||
modeChangeButtons.AddItem(t);
|
||||
modeChangeButtons.Current.Value = modeChangeButtons.Items.FirstOrDefault();
|
||||
var pages = CreateResultPages();
|
||||
|
||||
foreach (var p in pages)
|
||||
modeChangeButtons.AddItem(p);
|
||||
|
||||
modeChangeButtons.Current.Value = pages.FirstOrDefault();
|
||||
|
||||
modeChangeButtons.Current.BindValueChanged(page =>
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user