(self)
| 540 | self.draw() |
| 541 | |
| 542 | def draw_idle(self): |
| 543 | # docstring inherited |
| 544 | _log.debug("%s - draw_idle()", type(self)) |
| 545 | self._isDrawn = False # Force redraw |
| 546 | # Triggering a paint event is all that is needed to defer drawing |
| 547 | # until later. The platform will send the event when it thinks it is |
| 548 | # a good time (usually as soon as there are no other events pending). |
| 549 | self.Refresh(eraseBackground=False) |
| 550 | |
| 551 | def flush_events(self): |
| 552 | # docstring inherited |
no outgoing calls
no test coverage detected