Return True if event should be ignored. This method (or a version of it) should be called at the beginning of any event callback.
(self, event)
| 81 | doc="Is the widget active?") |
| 82 | |
| 83 | def ignore(self, event): |
| 84 | """Return True if event should be ignored. |
| 85 | |
| 86 | This method (or a version of it) should be called at the beginning |
| 87 | of any event callback. |
| 88 | """ |
| 89 | return not self.active |
| 90 | |
| 91 | |
| 92 | class AxesWidget(Widget): |
no outgoing calls
no test coverage detected