(self)
| 192 | wx.PostEvent(self.mainFrame, GE.FitChanged(fitIDs=(fitID,))) |
| 193 | |
| 194 | def toggleRefreshButton(self): |
| 195 | charID = self.getActiveCharacter() |
| 196 | sChar = Character.getInstance() |
| 197 | char = sChar.getCharacter(charID) |
| 198 | if sChar.getCharName(charID) not in ("All 0", "All 5") and sChar.getSsoCharacter(char.ID) is not None: |
| 199 | self.btnRefresh.Enable(True) |
| 200 | else: |
| 201 | self.btnRefresh.Enable(False) |
| 202 | |
| 203 | def selectChar(self, charID): |
| 204 | choice = self.charChoice |
no test coverage detected