(self, event)
| 232 | wx.PostEvent(self, GE.CharListUpdated()) |
| 233 | |
| 234 | def revertChar(self, event): |
| 235 | sChr = Character.getInstance() |
| 236 | char = self.entityEditor.getActiveEntity() |
| 237 | sChr.revertCharacter(char.ID) |
| 238 | wx.PostEvent(self, GE.CharListUpdated()) |
| 239 | |
| 240 | def kbEvent(self, event): |
| 241 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
nothing calls this directly
no test coverage detected