| 911 | } |
| 912 | |
| 913 | void FormattedTextBlock::SetScale(float value) |
| 914 | { |
| 915 | if (_defaultScale == value) { |
| 916 | return; |
| 917 | } |
| 918 | |
| 919 | _defaultScale = value; |
| 920 | _parts.clear(); |
| 921 | _background.clear(); |
| 922 | } |
| 923 | |
| 924 | void FormattedTextBlock::SetCharSpacing(float value) |
| 925 | { |
no test coverage detected