Merge pull request #12929 from LillyJadeKatrin/retroachievements-leaderboard-fixes

Fix Leaderboards Tab
This commit is contained in:
Admiral H. Curtiss
2024-07-14 16:47:59 +02:00
committed by GitHub
2 changed files with 18 additions and 2 deletions

View File

@ -87,7 +87,7 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all)
}
for (auto row : m_leaderboard_order)
{
UpdateRow(row.second);
UpdateRow(row.first);
}
}
@ -98,7 +98,7 @@ void AchievementLeaderboardWidget::UpdateData(
{
if (update_ids.contains(row.first))
{
UpdateRow(row.second);
UpdateRow(row.first);
}
}
}