Skip to content

Commit

Permalink
Merge pull request #5133 from Nstelt/center_align_profile_cols
Browse files Browse the repository at this point in the history
Center-align Goal and Progress columns on profile page
  • Loading branch information
CodingJellyfish authored Jul 19, 2024
2 parents 355d7cd + d64edf2 commit 5527a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/states_screens/online/online_profile_achievements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5527a11

Please sign in to comment.