Add missing line breaks

This commit is contained in:
Andrei Zavatski
2019-09-27 09:32:46 +03:00
parent 94eacbca5d
commit 475455d7cd

View File

@ -44,7 +44,8 @@ namespace osu.Game.Overlays
Clear(); Clear();
lastSection = null; lastSection = null;
sections = !user.IsBot ? new ProfileSection[] sections = !user.IsBot ?
new ProfileSection[]
{ {
//new AboutSection(), //new AboutSection(),
new RecentSection(), new RecentSection(),
@ -53,7 +54,8 @@ namespace osu.Game.Overlays
new HistoricalSection(), new HistoricalSection(),
new BeatmapsSection(), new BeatmapsSection(),
new KudosuSection() new KudosuSection()
} : new ProfileSection[] } :
new ProfileSection[]
{ {
//new AboutSection(), //new AboutSection(),
}; };