| 718 | } |
| 719 | |
| 720 | UITextInput* UITextInput::setHintShadowColor( const Color& shadowColor ) { |
| 721 | if ( shadowColor != mHintStyleConfig.getFontShadowColor() ) { |
| 722 | mHintCache->setShadowColor( shadowColor ); |
| 723 | mHintStyleConfig.ShadowColor = shadowColor; |
| 724 | invalidateDraw(); |
| 725 | } |
| 726 | |
| 727 | return this; |
| 728 | } |
| 729 | |
| 730 | const Vector2f& UITextInput::getHintShadowOffset() const { |
| 731 | return mHintStyleConfig.getFontShadowOffset(); |
nothing calls this directly
no test coverage detected