Merge branch 'master' into flow_container_insert

This commit is contained in:
Dean Herbert
2019-07-11 22:53:57 +09:00
committed by GitHub
159 changed files with 4198 additions and 948 deletions

View File

@ -58,7 +58,11 @@ namespace osu.Game.Overlays.Changelog
}
if (build != null)
Child = new ChangelogBuildWithNavigation(build) { SelectBuild = SelectBuild };
Children = new Drawable[]
{
new ChangelogBuildWithNavigation(build) { SelectBuild = SelectBuild },
new Comments(build)
};
}
public class ChangelogBuildWithNavigation : ChangelogBuild