| 88 | } |
| 89 | |
| 90 | void LabelWidget::renderImpl() { |
| 91 | context()->setTextStyle(m_style); |
| 92 | context()->renderInterfaceText(m_text, {Vec2F(screenPosition()), m_hAnchor, m_vAnchor, m_wrapWidth, m_textCharLimit}); |
| 93 | } |
| 94 | |
| 95 | void LabelWidget::updateTextRegion() { |
| 96 | context()->setTextStyle(m_style); |
nothing calls this directly
no test coverage detected