From 20c8bc1c1eb98c76a41fe62f209446541df5c6b8 Mon Sep 17 00:00:00 2001 From: DawnFire42 Date: Sat, 23 May 2026 23:18:38 -0400 Subject: [PATCH] Alignment fix --- cockatrice/src/game_graphics/game_view.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cockatrice/src/game_graphics/game_view.cpp b/cockatrice/src/game_graphics/game_view.cpp index d0dd1774b..e546e6863 100644 --- a/cockatrice/src/game_graphics/game_view.cpp +++ b/cockatrice/src/game_graphics/game_view.cpp @@ -299,7 +299,8 @@ QString GameView::buildSubtypeCountText() const .arg(namePadding, name, countPadding, count); } - return lines.join(QStringLiteral("
")); + return QStringLiteral("") + lines.join(QStringLiteral("
")) + + QStringLiteral("
"); } void GameView::updateSelectionCount(const QSize &viewSize)