From 2040a57e5da67609301212a7daccc8bbab7801d4 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 27 Nov 2014 21:08:41 +0000 Subject: [PATCH] Check for new versions even if we think one is available * This way if someone updates their install without clicking the menu item to clear this flag, it will still detect the update after a few days. * (And when I forget to update which beta is latest, it will fix itself eventually. Oops). --- renderdocui/Windows/MainWindow.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/renderdocui/Windows/MainWindow.cs b/renderdocui/Windows/MainWindow.cs index f591c45ad..13928da8b 100644 --- a/renderdocui/Windows/MainWindow.cs +++ b/renderdocui/Windows/MainWindow.cs @@ -902,12 +902,6 @@ namespace renderdocui.Windows if(!OfficialVersion && !BetaVersion) return; - if (m_Core.Config.CheckUpdate_UpdateAvailable) - { - SetUpdateAvailable(); - return; - } - DateTime today = DateTime.Now; DateTime compare = today.AddDays(-2);