| 398 | return self._antialiased |
| 399 | |
| 400 | def update_from(self, other): |
| 401 | # docstring inherited |
| 402 | super().update_from(other) |
| 403 | self._color = other._color |
| 404 | self._multialignment = other._multialignment |
| 405 | self._verticalalignment = other._verticalalignment |
| 406 | self._horizontalalignment = other._horizontalalignment |
| 407 | self._fontproperties = other._fontproperties.copy() |
| 408 | self._usetex = other._usetex |
| 409 | self._rotation = other._rotation |
| 410 | self._transform_rotates_text = other._transform_rotates_text |
| 411 | self._picker = other._picker |
| 412 | self._linespacing = other._linespacing |
| 413 | self._antialiased = other._antialiased |
| 414 | self.stale = True |
| 415 | |
| 416 | def _get_layout(self, renderer): |
| 417 | """ |