(self, alpha)
| 483 | self.stale = True |
| 484 | |
| 485 | def set_alpha(self, alpha): |
| 486 | # docstring inherited |
| 487 | super().set_alpha(alpha) |
| 488 | self._set_facecolor(self._original_facecolor) |
| 489 | self._set_edgecolor(self._original_edgecolor) |
| 490 | self._set_hatchcolor(self._original_hatchcolor) |
| 491 | # stale is already True |
| 492 | |
| 493 | def set_linewidth(self, w): |
| 494 | """ |
no test coverage detected