hide the tooltip
(self)
| 68 | raise NotImplementedError |
| 69 | |
| 70 | def hidetip(self): |
| 71 | """hide the tooltip""" |
| 72 | # Note: This is called by __del__, so careful when overriding/extending |
| 73 | tw = self.tipwindow |
| 74 | self.tipwindow = None |
| 75 | if tw: |
| 76 | try: |
| 77 | tw.destroy() |
| 78 | except TclError: # pragma: no cover |
| 79 | pass |
| 80 | |
| 81 | |
| 82 | class OnHoverTooltipBase(TooltipBase): |