1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 12:47:44 +00:00

Remove extraneous argumentsEncrypted definition in profile

This commit is contained in:
Joshua Goins 2023-10-08 13:20:16 -04:00
parent 5bd5656e14
commit 944798825d

View file

@ -379,20 +379,6 @@ void Profile::setDalamudInjectDelay(const int value)
}
}
bool Profile::argumentsEncrypted() const
{
return m_config->encryptArguments();
}
void Profile::setArgumentsEncrypted(const bool value)
{
if (m_config->encryptArguments() != value) {
m_config->setEncryptArguments(value);
m_config->save();
Q_EMIT encryptedArgumentsChanged();
}
}
Account *Profile::account() const
{
return m_account;