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).
This commit is contained in:
baldurk
2014-11-27 21:08:41 +00:00
parent de7cabe6f3
commit 2040a57e5d
-6
View File
@@ -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);