(parent, pos)
| 38 | super().focusOutEvent(event) |
| 39 | |
| 40 | def show_tooltip_popup(parent, pos): |
| 41 | tooltip_popup = TooltipPopup(parent) |
| 42 | tooltip_popup.move(pos) |
| 43 | tooltip_popup.show() |
| 44 | parent.tooltip_popup = tooltip_popup # Keep a reference to the tooltip |
| 45 | |
| 46 | # Assuming this is within the context of an existing PySide6 application |
| 47 | ctx = binaryninjaui.UIContext.allContexts()[0] |
no test coverage detected