Add word wrap to Achievement Dialog text

This commit is contained in:
LillyJadeKatrin
2024-06-15 10:22:32 -04:00
parent a13b198ba0
commit e1ed19d48a
3 changed files with 7 additions and 0 deletions

View File

@ -55,7 +55,9 @@ void AchievementLeaderboardWidget::UpdateData(bool clean_all)
const auto* leaderboard = leaderboard_bucket.leaderboards[board];
m_leaderboard_order[leaderboard->id] = row;
QLabel* a_title = new QLabel(QString::fromUtf8(leaderboard->title));
a_title->setWordWrap(true);
QLabel* a_description = new QLabel(QString::fromUtf8(leaderboard->description));
a_description->setWordWrap(true);
QVBoxLayout* a_col_left = new QVBoxLayout();
a_col_left->addWidget(a_title);
a_col_left->addWidget(a_description);