refactor: Remove option to disable autologoff

Auto logoff was always enabled in normal builds anyway, even when the
user tried to disable it (see 8eff8cd).
This commit is contained in:
Lars Toenning
2024-01-27 22:16:42 +01:00
parent 882ae3b741
commit 298c9eeec1
14 changed files with 0 additions and 120 deletions

View File

@@ -250,10 +250,6 @@ void SwiftGuiStd::loginRequested()
{
if (!m_loginDialog) { m_loginDialog.reset(new CLoginDialog(this)); }
connect(m_loginDialog.data(), &CLoginDialog::requestNetworkSettings, this, &SwiftGuiStd::displayNetworkSettings);
if (!CBuildConfig::isLocalDeveloperDebugBuild())
{
m_loginDialog->setAutoLogoff(true);
}
m_loginDialog->show();
}
else