(self, drawing_area, ctx, width, height)
| 266 | self.queue_draw() |
| 267 | |
| 268 | def _draw_func(self, drawing_area, ctx, width, height): |
| 269 | self.on_draw_event(self, ctx) |
| 270 | self._post_draw(self, ctx) |
| 271 | |
| 272 | def _post_draw(self, widget, ctx): |
| 273 | if self._rubberband_rect is None: |
nothing calls this directly
no test coverage detected