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:
parent
2e23da1dfa
commit
0fae49ee21
@ -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",
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user