Add messaging telling users how to leave changelog comments

This commit is contained in:
Dean Herbert
2019-07-04 15:47:06 +09:00
parent f41c89c3be
commit 4885f0f0c7
4 changed files with 87 additions and 1 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