apply reviewer suggestion: use explicit MSA check again

Co-authored-by: Alexandru Ionut Tripon <alexandru.tripon97@gmail.com>
Signed-off-by: captivator <84224501+qaptivator@users.noreply.github.com>
This commit is contained in:
captivator 2026-04-17 13:47:08 +03:00 committed by GitHub
parent 4344f5eef9
commit 03799bf258
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1391,7 +1391,7 @@ void MainWindow::on_actionManageSkins_triggered()
{
auto account = APPLICATION->accounts()->defaultAccount();
if (account && (account->accountType() != AccountType::Offline) && !account->isActive()) {
if (account && (account->accountType() == AccountType::MSA) && !account->isActive()) {
SkinManageDialog dialog(this, account);
dialog.exec();
}