Skip to content
Snippets Groups Projects
Verified Commit ee8fb31f authored by Burak Hançerli's avatar Burak Hançerli :headphones:
Browse files

fix: build issues after rebase

parent 3d0ada63
No related branches found
No related tags found
No related merge requests found
......@@ -116,26 +116,6 @@ QString Backend::buildInfo() const
+ "\nOpenSSL support: " + QVariant(QSslSocket::supportsSsl()).toString()};
}
void Backend::enableBackgroundUpdate(const bool &enabled)
{
if (enabled) {
m_backgroundTimer.start();
} else {
m_backgroundTimer.stop();
}
}
void Backend::setUpdateInBackground(const bool &enabled)
{
QSettings().setValue("system/updateInBackground", enabled);
if (enabled) {
qDebug() << "Update in background is enabled";
} else {
qDebug() << "Update in background is disabled";
}
enableBackgroundUpdate(enabled);
}
void Backend::setAutoScaleProject(const bool &enabled)
{
QSettings().setValue(Constants::Settings::ProjectManager::AutoScale, enabled);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment