(self, fit)
| 383 | |
| 384 | # Context menu handlers |
| 385 | def addFit(self, fit): |
| 386 | if fit is None: |
| 387 | return |
| 388 | self.mainFrame.command.Submit(cmd.GuiAddProjectedFitsCommand( |
| 389 | fitID=self.mainFrame.getActiveFit(), |
| 390 | projectedFitIDs=[fit.ID], |
| 391 | amount=1)) |
| 392 | |
| 393 | def getExistingFitIDs(self): |
| 394 | return [f.ID for f in self.fits] |
nothing calls this directly
no test coverage detected