(self, event)
| 987 | del self.waitDialog |
| 988 | |
| 989 | def openWXInspectTool(self, event): |
| 990 | if not InspectionTool().initialized: |
| 991 | InspectionTool().Init() |
| 992 | |
| 993 | # Find a widget to be selected in the tree. Use either the |
| 994 | # one under the cursor, if any, or this frame. |
| 995 | wnd, _ = wx.FindWindowAtPointer() |
| 996 | if not wnd: |
| 997 | wnd = self |
| 998 | InspectionTool().Show(wnd, True) |