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:
parent
5889ab1d96
commit
a28b169890
|
@ -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; } = "";
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue