From 4344f5eef912e4c74c8ab48e1d9004e79bf448a6 Mon Sep 17 00:00:00 2001 From: captivator <84224501+qaptivator@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:46:43 +0300 Subject: [PATCH] apply reviewer suggestion: use explicit MSA check Co-authored-by: Alexandru Ionut Tripon Signed-off-by: captivator <84224501+qaptivator@users.noreply.github.com> --- launcher/ui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index 9e03874e6..b9e51a9f2 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -656,7 +656,7 @@ void MainWindow::repopulateAccountsMenu() auto accounts = APPLICATION->accounts(); MinecraftAccountPtr defaultAccount = accounts->defaultAccount(); - bool canChangeSkin = defaultAccount && (defaultAccount->accountType() != AccountType::Offline) && !defaultAccount->isActive(); + bool canChangeSkin = defaultAccount && (defaultAccount->accountType() == AccountType::MSA) && !defaultAccount->isActive(); ui->actionManageSkins->setEnabled(canChangeSkin); QString active_profileId = "";