Browse Source

Prolong checking interval for program updates

adaptive-webui-19844
Chocobo1 4 years ago
parent
commit
e6a8c02745
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 4
      src/gui/mainwindow.cpp

4
src/gui/mainwindow.cpp

@ -104,6 +104,8 @@
#include "programupdater.h" #include "programupdater.h"
#endif #endif
using namespace std::chrono_literals;
namespace namespace
{ {
#define SETTINGS_KEY(name) "GUI/" name #define SETTINGS_KEY(name) "GUI/" name
@ -1585,7 +1587,7 @@ void MainWindow::loadPreferences(const bool configureSession)
if (!m_programUpdateTimer) if (!m_programUpdateTimer)
{ {
m_programUpdateTimer = new QTimer(this); m_programUpdateTimer = new QTimer(this);
m_programUpdateTimer->setInterval(60 * 60 * 1000); m_programUpdateTimer->setInterval(24h);
m_programUpdateTimer->setSingleShot(true); m_programUpdateTimer->setSingleShot(true);
connect(m_programUpdateTimer, &QTimer::timeout, this, [this]() { checkProgramUpdate(false); }); connect(m_programUpdateTimer, &QTimer::timeout, this, [this]() { checkProgramUpdate(false); });
m_programUpdateTimer->start(); m_programUpdateTimer->start();

Loading…
Cancel
Save