Fix box[]es not being clipped (#10473)

Fixes a regression of #8676.
This commit is contained in:
DS
2020-10-08 19:44:47 +02:00
committed by GitHub
parent f0b6f7909a
commit b2f3f66385

View File

@ -107,10 +107,11 @@ void GUIBox::draw()
video::IVideoDriver *driver = Environment->getVideoDriver();
driver->draw2DRectangle(main_rect, m_colors[0], m_colors[1], m_colors[3],
m_colors[2], nullptr);
m_colors[2], &AbsoluteClippingRect);
for (size_t i = 0; i <= 3; i++)
driver->draw2DRectangle(m_bordercolors[i], border_rects[i], nullptr);
driver->draw2DRectangle(m_bordercolors[i], border_rects[i],
&AbsoluteClippingRect);
IGUIElement::draw();
}