///////////////////////////////////////////////////////////////////////////
| 72 | |
| 73 | //////////////////////////////////////////////////////////////////////////////// |
| 74 | void RichText::Line::updateGeometry() const |
| 75 | { |
| 76 | m_bounds = sf::FloatRect(); |
| 77 | |
| 78 | for (sf::Text& text : m_texts) |
| 79 | updateTextAndGeometry(text); |
| 80 | } |
| 81 | |
| 82 | //////////////////////////////////////////////////////////////////////////////// |
| 83 | void RichText::Line::updateTextAndGeometry(sf::Text& text) const |
nothing calls this directly
no test coverage detected