Skip to content

Commit

Permalink
Fix avatars for accounts not loading
Browse files Browse the repository at this point in the history
This is due to a mistake on my part, a signal needs to be called.
  • Loading branch information
redstrate committed Nov 9, 2024
1 parent 41a91a0 commit ec403a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion launcher/src/accountmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ void AccountManager::load()
const auto account = new Account(uuid, this);
m_accounts.append(account);
Q_EMIT accountsChanged();
Q_EMIT accountAdded(account);
}
}
}
Expand Down Expand Up @@ -130,4 +131,4 @@ int AccountManager::numAccounts() const
return static_cast<int>(m_accounts.count());
}

#include "moc_accountmanager.cpp"
#include "moc_accountmanager.cpp"

0 comments on commit ec403a2

Please sign in to comment.