1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00

vcmi: fix creature numbers on infobar

It was rendered on a border
This commit is contained in:
Konstantin 2023-03-07 04:19:07 +03:00
parent d503c875a4
commit 0dbc7169d8

View File

@ -270,7 +270,7 @@ void CArmyTooltip::init(const InfoAboutArmy &army)
}
}
subtitles.push_back(std::make_shared<CLabel>(slotsPos[slot.first.getNum()].x + 17, slotsPos[slot.first.getNum()].y + 41, FONT_TINY, ETextAlignment::CENTER, Colors::WHITE, subtitle));
subtitles.push_back(std::make_shared<CLabel>(slotsPos[slot.first.getNum()].x + 17, slotsPos[slot.first.getNum()].y + 39, FONT_TINY, ETextAlignment::CENTER, Colors::WHITE, subtitle));
}
}