Set UpdateAutoCheckEnabled default to true, don't explicitly set a link color for the update available text (red on white is hard to read, default is usually blue, which looks fine here)

This commit is contained in:
CasualPokePlayer 2024-10-08 14:43:30 -07:00
parent 5889ab1d96
commit a28b169890
2 changed files with 1 additions and 2 deletions

View File

@ -164,7 +164,7 @@ namespace BizHawk.Client.Common
public bool AviCaptureLua { get; set; }
public bool ScreenshotCaptureOsd { get; set; }
public bool FirstBoot { get; set; } = true;
public bool UpdateAutoCheckEnabled { get; set; }
public bool UpdateAutoCheckEnabled { get; set; } = true;
public DateTime? UpdateLastCheckTimeUtc { get; set; }
public string UpdateLatestVersion { get; set; } = "";
public string UpdateIgnoreVersion { get; set; } = "";

View File

@ -2161,7 +2161,6 @@ namespace BizHawk.Client.EmuHawk
// UpdateNotification
//
this.UpdateNotification.IsLink = true;
this.UpdateNotification.LinkColor = System.Drawing.Color.Red;
this.UpdateNotification.Spring = true;
this.UpdateNotification.Text = "New version available!";
this.UpdateNotification.TextAlign = System.Drawing.ContentAlignment.MiddleRight;