Schedule a timer to time how long mouse is hovering
(self)
| 889 | self.hidetip() |
| 890 | |
| 891 | def schedule(self): |
| 892 | """ |
| 893 | Schedule a timer to time how long mouse is hovering |
| 894 | """ |
| 895 | self.unschedule() |
| 896 | self.id = self.widget.after(self.timeout, self.showtip) |
| 897 | |
| 898 | def unschedule(self): |
| 899 | """ |