schedule the future display of the tooltip
(self)
| 121 | self.hidetip() |
| 122 | |
| 123 | def schedule(self): |
| 124 | """schedule the future display of the tooltip""" |
| 125 | self.unschedule() |
| 126 | self._after_id = self.anchor_widget.after(self.hover_delay, |
| 127 | self.showtip) |
| 128 | |
| 129 | def unschedule(self): |
| 130 | """cancel the future display of the tooltip""" |
no test coverage detected