| 20 | } |
| 21 | |
| 22 | void RichText::Line::setCharacterSize(unsigned int size) const |
| 23 | { |
| 24 | for (sf::Text& text : m_texts) |
| 25 | text.setCharacterSize(size); |
| 26 | |
| 27 | updateGeometry(); |
| 28 | } |
| 29 | |
| 30 | void RichText::Line::setFont(const sf::Font& font) const |
| 31 | { |
no outgoing calls
no test coverage detected