Add missing virtual calls to UIList methods (#80)

* Add missing virtual calls to UIList methods

* Add missing virtual call in UICheckBox::Draw
This commit is contained in:
pryon 2023-11-12 17:39:04 +01:00 committed by GitHub
parent d6b7fecb69
commit 64429232f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -84,6 +84,8 @@ UICheckBox::UICheckBox()
void UICheckBox::Draw()
{
UpdateData();
if (!m_depressed)
{
Draw3DBox(0.0f, 0.0f, m_frame.size.width, m_frame.size.height, 0, m_border_color, m_local_alpha);