mirror of
https://github.com/ppy/osu
synced 2024-12-26 00:32:52 +00:00
Fix "Beatmap not downloaded" tooltip hint not showing in daily challenge
This commit is contained in:
parent
834ad3524a
commit
9323f89357
@ -21,8 +21,8 @@ namespace osu.Game.Screens.OnlinePlay.Components
|
||||
private void load(OnlinePlayBeatmapAvailabilityTracker beatmapTracker)
|
||||
{
|
||||
availability.BindTo(beatmapTracker.Availability);
|
||||
|
||||
availability.BindValueChanged(_ => updateState());
|
||||
|
||||
Enabled.BindValueChanged(_ => updateState(), true);
|
||||
}
|
||||
|
||||
@ -33,7 +33,7 @@ namespace osu.Game.Screens.OnlinePlay.Components
|
||||
{
|
||||
get
|
||||
{
|
||||
if (Enabled.Value)
|
||||
if (base.Enabled.Value)
|
||||
return string.Empty;
|
||||
|
||||
if (availability.Value.State != DownloadState.LocallyAvailable)
|
||||
|
@ -68,9 +68,6 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
|
||||
{
|
||||
get
|
||||
{
|
||||
if (Enabled.Value)
|
||||
return string.Empty;
|
||||
|
||||
if (!enoughTimeLeft)
|
||||
return "No time left!";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user