| 307 | } |
| 308 | |
| 309 | void TextLine::set_width(float p_width) |
| 310 | { |
| 311 | width = p_width; |
| 312 | if (alignment == HORIZONTAL_ALIGNMENT_FILL || overrun_behavior != TextServer::OVERRUN_NO_TRIMMING) |
| 313 | { |
| 314 | dirty = true; |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | float TextLine::get_width() const |
| 319 | { |
no outgoing calls
no test coverage detected