From c8b0bfd9f9de976215a7463e0531051835ea785a Mon Sep 17 00:00:00 2001 From: Laserlicht <13953785+Laserlicht@users.noreply.github.com> Date: Thu, 2 Oct 2025 21:30:57 +0200 Subject: [PATCH] fix bonus text pos --- client/windows/CCreatureWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/windows/CCreatureWindow.cpp b/client/windows/CCreatureWindow.cpp index 71157ea57..c554adacc 100644 --- a/client/windows/CCreatureWindow.cpp +++ b/client/windows/CCreatureWindow.cpp @@ -320,7 +320,7 @@ CStackWindow::BonusLineSection::BonusLineSection(CStackWindow * owner, size_t li if (!bi.imagePath.empty()) icon[leftRight] = std::make_shared(bi.imagePath, position.x, position.y); - description[leftRight] = std::make_shared(Rect(position.x + 60, position.y + 2, 137, 50), FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, bi.description); + description[leftRight] = std::make_shared(Rect(position.x + 60, position.y, 137, 50), FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, bi.description); drawBonusSource(leftRight, Point(position.x - 1, position.y - 1), bi); } }