From 4f7a8d83cc65e84c822e5f1527f7d93184bc4129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zieli=C5=84ski?= Date: Sun, 28 Apr 2024 10:29:22 +0200 Subject: [PATCH] Tweak text alignment --- client/widgets/CreatureCostBox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/widgets/CreatureCostBox.cpp b/client/widgets/CreatureCostBox.cpp index 0c1f4713e..5d4c107e6 100644 --- a/client/widgets/CreatureCostBox.cpp +++ b/client/widgets/CreatureCostBox.cpp @@ -61,7 +61,7 @@ void CreatureCostBox::createItems(TResources res) //reverse to display gold as first resource for(auto & currentRes : boost::adaptors::reverse(resources)) { - currentRes.second.first->moveBy(Point(curx, 22)); + currentRes.second.first->moveBy(Point(curx + 1, 22)); currentRes.second.second->moveBy(Point(curx, 22)); curx += spacing; }