From a28b169890516637bb8ae468a58f3d79c4e9a1c5 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Tue, 8 Oct 2024 14:43:30 -0700 Subject: [PATCH] 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) --- src/BizHawk.Client.Common/config/Config.cs | 2 +- src/BizHawk.Client.EmuHawk/MainForm.Designer.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/config/Config.cs b/src/BizHawk.Client.Common/config/Config.cs index 364dfdd603..d59ce5944e 100644 --- a/src/BizHawk.Client.Common/config/Config.cs +++ b/src/BizHawk.Client.Common/config/Config.cs @@ -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; } = ""; diff --git a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs index 47c1613b0d..213742e999 100644 --- a/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs +++ b/src/BizHawk.Client.EmuHawk/MainForm.Designer.cs @@ -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;