it seems that *UIWidget::getClientFrame* should return a 0 position

This commit is contained in:
OM 2023-05-15 21:25:27 +02:00
parent 2c816c0846
commit 38e46221bd

View file

@ -2718,7 +2718,8 @@ UIRect2D UIWidget::getClientFrame
)
{
return m_frame;
// don't return the position
return UIRect2D(UIPoint2D(0, 0), m_frame.size);
}
void UIWidget::setAlwaysOnBottom