mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix problems with changing auto check interval
This commit is contained in:
parent
70262fa425
commit
7e751a80f7
@ -605,6 +605,7 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
|
|||||||
delete progress;
|
delete progress;
|
||||||
qDebug() << "Finished opening Profile";
|
qDebug() << "Finished opening Profile";
|
||||||
|
|
||||||
|
if (updateChecker != nullptr)
|
||||||
updateChecker->showMessage();
|
updateChecker->showMessage();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -612,6 +613,7 @@ bool MainWindow::OpenProfile(QString profileName, bool skippassword)
|
|||||||
|
|
||||||
void MainWindow::CloseProfile()
|
void MainWindow::CloseProfile()
|
||||||
{
|
{
|
||||||
|
if (updateChecker != nullptr)
|
||||||
updateChecker->showMessage();
|
updateChecker->showMessage();
|
||||||
|
|
||||||
if (daily) {
|
if (daily) {
|
||||||
|
@ -220,23 +220,24 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
|||||||
|
|
||||||
ui->autoLaunchImporter->setChecked(AppSetting->autoLaunchImport());
|
ui->autoLaunchImporter->setChecked(AppSetting->autoLaunchImport());
|
||||||
#ifndef NO_CHECKUPDATES
|
#ifndef NO_CHECKUPDATES
|
||||||
|
ui->updateCheckEvery->setValue(AppSetting->updateCheckFrequency());
|
||||||
|
ui->allowEarlyUpdates->setChecked(AppSetting->allowEarlyUpdates());
|
||||||
ui->test_invite->setVisible(false);
|
ui->test_invite->setVisible(false);
|
||||||
if (!getVersion().IsReleaseVersion()) {
|
if (!getVersion().IsReleaseVersion()) {
|
||||||
// Test version
|
// Test version
|
||||||
ui->automaticallyCheckUpdates->setVisible(false);
|
ui->automaticallyCheckUpdates->setVisible(false);
|
||||||
ui->allowEarlyUpdates->setVisible(false);
|
ui->allowEarlyUpdates->setVisible(false);
|
||||||
ui->updateCheckEvery->setMaximum(min(7,AppSetting->updateCheckFrequency()));
|
ui->updateCheckEvery->setMaximum(7);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Release version
|
// Release version
|
||||||
ui->updateCheckEvery->setMaximum(min(90,AppSetting->updateCheckFrequency()));
|
ui->updateCheckEvery->setMaximum(90);
|
||||||
ui->always_look_for_updates->setVisible(false);
|
ui->always_look_for_updates->setVisible(false);
|
||||||
if (!AppSetting->allowEarlyUpdates()) {
|
if (!AppSetting->allowEarlyUpdates()) {
|
||||||
ui->test_invite->setVisible(true);
|
ui->test_invite->setVisible(true);
|
||||||
ui->allowEarlyUpdates->setVisible(false);
|
ui->allowEarlyUpdates->setVisible(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ui->allowEarlyUpdates->setChecked(AppSetting->allowEarlyUpdates());
|
|
||||||
#else
|
#else
|
||||||
ui->automaticallyCheckUpdates_GroupBox->setVisible(false);
|
ui->automaticallyCheckUpdates_GroupBox->setVisible(false);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user