///////////////////////////////////////////////////////////////////////////
| 14 | { |
| 15 | //////////////////////////////////////////////////////////////////////////////// |
| 16 | void RichText::Line::setCharacterSize(unsigned int size) |
| 17 | { |
| 18 | for (sf::Text& text : m_texts) |
| 19 | text.setCharacterSize(size); |
| 20 | |
| 21 | updateGeometry(); |
| 22 | } |
| 23 | |
| 24 | |
| 25 | //////////////////////////////////////////////////////////////////////////////// |