Improve song selection layout, database loading

Also adds event that notifes the song select when a beatmap is added.
This commit is contained in:
Drew DeVault
2016-10-11 13:52:16 -04:00
parent a14edc06c8
commit 674f624bfc
3 changed files with 23 additions and 11 deletions

View File

@ -223,7 +223,6 @@ namespace osu.Game.Beatmaps.Formats
line = stream.ReadLine();
if (line == null)
break;
line = line.Trim();
if (string.IsNullOrEmpty(line))
continue;
if (line.StartsWith(@"osu file format v"))
@ -274,4 +273,4 @@ namespace osu.Game.Beatmaps.Formats
return beatmap;
}
}
}
}