Add hover effect to listboxes

This commit is contained in:
Jordy Ruiz 2019-01-11 17:01:25 +01:00
parent de4ffee556
commit 576b9a8d04

View file

@ -1036,6 +1036,11 @@ CMenus::CListboxItem CMenus::UiDoListboxNextItem(CListBoxState* pState, const vo
CUIRect r = Item.m_Rect;
RenderTools()->DrawUIRect(&r, vec4(1,1,1,ProcessInput?0.5f:0.33f), CUI::CORNER_ALL, 5.0f);
}
/*else*/ if(UI()->HotItem() == pId)
{
CUIRect r = Item.m_Rect;
RenderTools()->DrawUIRect(&r, vec4(1,1,1,0.33f), CUI::CORNER_ALL, 5.0f);
}
return Item;
}