cancel the future display of the tooltip
(self)
| 127 | self.showtip) |
| 128 | |
| 129 | def unschedule(self): |
| 130 | """cancel the future display of the tooltip""" |
| 131 | after_id = self._after_id |
| 132 | self._after_id = None |
| 133 | if after_id: |
| 134 | self.anchor_widget.after_cancel(after_id) |
| 135 | |
| 136 | def hidetip(self): |
| 137 | """hide the tooltip""" |
no test coverage detected