Don't show update button when updates are not feasible

This commit is contained in:
Dean Herbert 2020-06-15 22:19:11 +09:00
parent d2155c3da3
commit 53b7057ee0

View File

@ -30,7 +30,8 @@ namespace osu.Game.Overlays.Settings.Sections.General
Bindable = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream), Bindable = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
}); });
// We should only display the button for UpdateManagers that do check for updates if (updateManager.CanCheckForUpdate)
{
Add(checkForUpdatesButton = new SettingsButton Add(checkForUpdatesButton = new SettingsButton
{ {
Text = "Check for updates", Text = "Check for updates",
@ -40,6 +41,7 @@ namespace osu.Game.Overlays.Settings.Sections.General
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(t => Schedule(() => checkForUpdatesButton.Enabled.Value = true)); Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(t => Schedule(() => checkForUpdatesButton.Enabled.Value = true));
} }
}); });
}
if (RuntimeInfo.IsDesktop) if (RuntimeInfo.IsDesktop)
{ {