(self, figure)
| 40 | manager_class = _api.classproperty(lambda cls: FigureManagerMac) |
| 41 | |
| 42 | def __init__(self, figure): |
| 43 | super().__init__(figure=figure) |
| 44 | self._draw_pending = False |
| 45 | self._is_drawing = False |
| 46 | # Keep track of the timers that are alive |
| 47 | self._timers = set() |
| 48 | |
| 49 | def draw(self): |
| 50 | """Render the figure and update the macosx canvas.""" |