(self, event)
| 339 | self.charChoice.SetSelection(0) |
| 340 | |
| 341 | def kbEvent(self, event): |
| 342 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
| 343 | self.Close() |
| 344 | return |
| 345 | event.Skip() |
| 346 | |
| 347 | def getActiveCharacter(self): |
| 348 | selection = self.charChoice.GetCurrentSelection() |
nothing calls this directly
no outgoing calls
no test coverage detected