The user selected the menu entry or hotkey, open the tip.
(self, event)
| 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." |
| 43 | self.open_calltip(True) |
| 44 | return "break" |
| 45 | |
| 46 | def try_open_calltip_event(self, event): |
| 47 | """Happens when it would be nice to open a calltip, but not really |
nothing calls this directly
no test coverage detected