| 370 | } |
| 371 | |
| 372 | void UITextInput::updateFontStyleConfig() { |
| 373 | if ( mPassCache ) { |
| 374 | mPassCache->setFontSize( mFontStyleConfig.CharacterSize ); |
| 375 | mPassCache->setFont( mFontStyleConfig.getFont() ); |
| 376 | mPassCache->setFillColor( mFontStyleConfig.getFontColor() ); |
| 377 | mPassCache->setShadowColor( mFontStyleConfig.getFontShadowColor() ); |
| 378 | mPassCache->setOutlineColor( mFontStyleConfig.getOutlineColor() ); |
| 379 | mPassCache->setOutlineThickness( mFontStyleConfig.getOutlineThickness() ); |
| 380 | } |
| 381 | } |
| 382 | |
| 383 | void UITextInput::onFontChanged() { |
| 384 | UITextView::onFontChanged(); |
nothing calls this directly
no test coverage detected