(self, event=None)
| 532 | self.populateSkillTree() |
| 533 | |
| 534 | def charChanged(self, event=None): |
| 535 | self.searchInput.SetValue("") |
| 536 | char = self.charEditor.entityEditor.getActiveEntity() |
| 537 | for i in range(self.clonesChoice.GetCount()): |
| 538 | cloneID = self.clonesChoice.GetClientData(i) |
| 539 | if char.alphaCloneID == cloneID: |
| 540 | self.clonesChoice.SetSelection(i) |
| 541 | |
| 542 | self.btnSecStatus.SetLabel(self.secStatusLabel.format(char.secStatus or 0.0)) |
| 543 | |
| 544 | self.populateSkillTree(event) |
| 545 | |
| 546 | def populateSkillTreeSkillSearch(self, event=None): |
| 547 | sChar = Character.getInstance() |
nothing calls this directly
no test coverage detected