mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Don't add a 'with Video' subtitle.
This commit is contained in:
@ -17,11 +17,6 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
|
|||||||
{
|
{
|
||||||
Width = 120;
|
Width = 120;
|
||||||
|
|
||||||
string subtitle = string.Empty;
|
|
||||||
|
|
||||||
if (set.OnlineInfo.HasVideo)
|
|
||||||
subtitle = noVideo ? "without Video" : "with Video";
|
|
||||||
|
|
||||||
BeatmapSetDownloader downloader;
|
BeatmapSetDownloader downloader;
|
||||||
Add(new Container
|
Add(new Container
|
||||||
{
|
{
|
||||||
@ -47,7 +42,7 @@ namespace osu.Game.Overlays.BeatmapSet.Buttons
|
|||||||
},
|
},
|
||||||
new OsuSpriteText
|
new OsuSpriteText
|
||||||
{
|
{
|
||||||
Text = subtitle,
|
Text = set.OnlineInfo.HasVideo && noVideo ? "without Video" : string.Empty,
|
||||||
TextSize = 11,
|
TextSize = 11,
|
||||||
Font = @"Exo2.0-Bold",
|
Font = @"Exo2.0-Bold",
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user