| 589 | } |
| 590 | |
| 591 | void Text::onNewString() { |
| 592 | mColorsNeedUpdate = true; |
| 593 | mGeometryNeedUpdate = true; |
| 594 | mCachedWidthNeedUpdate = true; |
| 595 | mVisualLinesNeedUpdate = true; |
| 596 | mTextHints = mString.getTextHints(); |
| 597 | checkColorEmojis(); |
| 598 | } |
| 599 | |
| 600 | bool Text::setString( const String::View& string ) { |
| 601 | if ( mString.view() != string ) { |
nothing calls this directly
no test coverage detected