1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Show changelog by default

This commit is contained in:
HoutarouOreki 2018-07-22 13:04:39 +02:00
parent 7e327fd084
commit 59cbc58edd

View File

@ -74,12 +74,16 @@ namespace osu.Game.Overlays
header = new ChangelogHeader(),
Streams = new ChangelogStreams(),
chart = new ChangelogChart(),
content = new ChangelogContent(),
content = new ChangelogContent()
},
},
},
};
OnLoadComplete += d => FetchChangelog();
OnLoadComplete += d =>
{
FetchChangelog();
content.ShowListing();
};
Streams.OnSelection = () =>
{
if (Streams.SelectedRelease != null)