(self, graphFrame, parent)
| 322 | 'Base Name') |
| 323 | |
| 324 | def __init__(self, graphFrame, parent): |
| 325 | super().__init__(graphFrame, parent) |
| 326 | |
| 327 | self.Bind(wx.EVT_CONTEXT_MENU, self.spawnMenu) |
| 328 | |
| 329 | self.appendItem(TargetProfile.getIdeal()) |
| 330 | self.updateView() |
| 331 | |
| 332 | def appendItem(self, item): |
| 333 | # Find out least used lightness |
nothing calls this directly
no test coverage detected