Enable AUTO LOGOFF per default

This commit is contained in:
Klaus Basan
2019-04-29 18:19:04 +02:00
parent 291b477d44
commit 8eff8cd3ba

View File

@@ -213,6 +213,12 @@ namespace BlackGui
if (isConnected) { this->startLogoffTimerCountdown(); }
}
}
// we decided to make it difficult for users to disable it
if (!CBuildConfig::isLocalDeveloperDebugBuild())
{
ui->cb_AutoLogoff->setChecked(true);
}
}
void CLoginComponent::setLogoffCountdown(int timeoutSeconds)