1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 15:33:05 +08:00

Don't add a 'with Video' subtitle.

This commit is contained in:
DrabWeb 2018-06-07 20:47:27 -03:00
parent 2e23da1dfa
commit 0fae49ee21

View File

@ -17,11 +17,6 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
{
Width = 120;
string subtitle = string.Empty;
if (set.OnlineInfo.HasVideo)
subtitle = noVideo ? "without Video" : "with Video";
BeatmapSetDownloader downloader;
Add(new Container
{
@ -47,7 +42,7 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
},
new OsuSpriteText
{
Text = subtitle,
Text = set.OnlineInfo.HasVideo && noVideo ? "without Video" : string.Empty,
TextSize = 11,
Font = @"Exo2.0-Bold",
},