1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 12:03:46 +08:00

Fix typo in variable

This commit is contained in:
Dean Herbert
2019-06-27 12:47:05 +09:00
Unverified
parent a5ccfeb18e
commit 3294464bc6
2 changed files with 2 additions and 2 deletions
@@ -442,7 +442,7 @@ namespace osu.Game.Tests.Visual.Online
private class TestBeatmapSetOverlay : BeatmapSetOverlay
{
public bool DownloadButtonsVisible => Header.DownloadButtonsVisibile;
public bool DownloadButtonsVisible => Header.DownloadButtonsVisible;
}
}
}
+1 -1
View File
@@ -38,7 +38,7 @@ namespace osu.Game.Overlays.BeatmapSet
private readonly BeatmapSetOnlineStatusPill onlineStatusPill;
public Details Details;
public bool DownloadButtonsVisibile => downloadButtonsContainer.Any();
public bool DownloadButtonsVisible => downloadButtonsContainer.Any();
public readonly BeatmapPicker Picker;