(self, event=None)
| 34 | return calltip_w.CalltipWindow(self.text) |
| 35 | |
| 36 | def remove_calltip_window(self, event=None): |
| 37 | if self.active_calltip: |
| 38 | self.active_calltip.hidetip() |
| 39 | self.active_calltip = None |
| 40 | |
| 41 | def force_open_calltip_event(self, event): |
| 42 | "The user selected the menu entry or hotkey, open the tip." |
no test coverage detected