(self, event)
| 208 | pass |
| 209 | |
| 210 | def mouseHit(self, event): |
| 211 | tab, _ = self.nbContainer.HitTest(event.Position) |
| 212 | if tab != -1: |
| 213 | self.nbContainer.SetSelection(tab) |
| 214 | |
| 215 | def OnWindowClose(self): |
| 216 | mutaPanel = getattr(self, 'mutator', None) |
nothing calls this directly
no test coverage detected