(self)
| 328 | event.Skip() |
| 329 | |
| 330 | def updateCharList(self): |
| 331 | sEsi = Esi.getInstance() |
| 332 | chars = sEsi.getSsoCharacters() |
| 333 | |
| 334 | self.charChoice.Clear() |
| 335 | for char in chars: |
| 336 | self.charChoice.Append(char.characterDisplay, char.ID) |
| 337 | |
| 338 | if len(chars) > 0: |
| 339 | self.charChoice.SetSelection(0) |
| 340 | |
| 341 | def kbEvent(self, event): |
| 342 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
no test coverage detected