Return whether *event* should be ignored. This method should be called at the beginning of any event callback.
(self, event)
| 84 | active = property(get_active, set_active, doc="Is the widget active?") |
| 85 | |
| 86 | def ignore(self, event): |
| 87 | """ |
| 88 | Return whether *event* should be ignored. |
| 89 | |
| 90 | This method should be called at the beginning of any event callback. |
| 91 | """ |
| 92 | return not self.active |
| 93 | |
| 94 | |
| 95 | class AxesWidget(Widget): |
no outgoing calls
no test coverage detected