(self, event)
| 135 | self.Bind(wx.EVT_ACTIVATE, self.OnActivate) |
| 136 | |
| 137 | def OnActivate(self, event): |
| 138 | self.parentWnd.SetActiveStatsWindow(self) |
| 139 | |
| 140 | def kbEvent(self, event): |
| 141 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
nothing calls this directly
no test coverage detected