(self, event)
| 101 | self.charChoice.SetSelection(0) |
| 102 | |
| 103 | def kbEvent(self, event): |
| 104 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
| 105 | self.Close() |
| 106 | return |
| 107 | event.Skip() |
| 108 | |
| 109 | def getActiveCharacter(self): |
| 110 | selection = self.charChoice.GetCurrentSelection() |
nothing calls this directly
no outgoing calls
no test coverage detected