Merge branch 'modify-item-buff-icons' into 'main/gingo-test'

Fix item buff icon overlapping with quantity

See merge request ryzom/ryzom-core!22
merge-requests/27/merge
Nuno Gonçalves (Ulukyn) 3 years ago
commit d436d5616a

@ -2534,7 +2534,8 @@ void CDBCtrlSheet::drawSheet (sint32 x, sint32 y, bool draging, bool showSelecti
// there is max 4 icons
sint32 hArea = (hSheet / 4);
sint32 xIcon = x;
sint32 yIcon = y;
// move buff icons up a row, quantity text is displayed on bottom-left corner
sint32 yIcon = y + hArea;
for (uint i = 0; i < _BuffIcons.size(); ++i)
{
sint32 wIcon = _BuffIcons[i].IconW;

Loading…
Cancel
Save