From d64edf2ef71f6994a01dd9f501e72f587f7d7dd8 Mon Sep 17 00:00:00 2001 From: Nstelt Date: Sat, 13 Jul 2024 06:12:09 -0700 Subject: [PATCH] Center-align Goal and Progress columns on profile page --- src/states_screens/online/online_profile_achievements.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/states_screens/online/online_profile_achievements.cpp b/src/states_screens/online/online_profile_achievements.cpp index 73742ad3eb3..4822c24998c 100644 --- a/src/states_screens/online/online_profile_achievements.cpp +++ b/src/states_screens/online/online_profile_achievements.cpp @@ -228,8 +228,8 @@ void BaseOnlineProfileAchievements::displayResults() if (a->getInfo()->isSecret() && !a->isAchieved()) continue; ListWidget::ListCell title(a->getInfo()->getName(), -1, 2); - ListWidget::ListCell goals(a->getGoalProgressAsString(), -1, 1); - ListWidget::ListCell progress(a->getProgressAsString(), -1, 1); + ListWidget::ListCell goals(a->getGoalProgressAsString(), -1, 1, true); + ListWidget::ListCell progress(a->getProgressAsString(), -1, 1, true); row.push_back(title); row.push_back(goals); row.push_back(progress);