mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-10-04 17:09:25 +00:00
UltimMC: Actually make profile for local accounts, fixes #334
This commit is contained in:
@@ -30,7 +30,7 @@ LoginDialog::LoginDialog(QWidget *parent) : QDialog(parent), ui(new Ui::LoginDia
|
||||
for(auto provider: AuthProviders::getAll()) {
|
||||
auto providerId = provider->id();
|
||||
// Exclude Microsoft and Local accounts from here...
|
||||
if (providerId != "MSA" && providerId != "dummy") {
|
||||
if (providerId != "MSA" && providerId != "local") {
|
||||
QRadioButton *button = new QRadioButton(provider->displayName());
|
||||
m_radioButtons[providerId] = button;
|
||||
ui->radioLayout->addWidget(button);
|
||||
|
Reference in New Issue
Block a user