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