(self, charID)
| 201 | self.btnRefresh.Enable(False) |
| 202 | |
| 203 | def selectChar(self, charID): |
| 204 | choice = self.charChoice |
| 205 | numItems = len(choice.GetItems()) |
| 206 | for i in range(numItems): |
| 207 | id_ = choice.GetClientData(i) |
| 208 | if id_ == charID: |
| 209 | choice.SetSelection(i) |
| 210 | return True |
| 211 | |
| 212 | return False |
| 213 | |
| 214 | def fitChanged(self, event): |
| 215 | """ |
no test coverage detected