hide the tooltip
(self)
| 134 | self.anchor_widget.after_cancel(after_id) |
| 135 | |
| 136 | def hidetip(self): |
| 137 | """hide the tooltip""" |
| 138 | try: |
| 139 | self.unschedule() |
| 140 | except TclError: # pragma: no cover |
| 141 | pass |
| 142 | super().hidetip() |
| 143 | |
| 144 | |
| 145 | class Hovertip(OnHoverTooltipBase): |
no test coverage detected