(self, event)
| 183 | self.mainFrame.additionsPane.select("Projected") |
| 184 | |
| 185 | def OnAddCommandFit(self, event): |
| 186 | activeFit = self.mainFrame.getActiveFit() |
| 187 | if activeFit: |
| 188 | if self.mainFrame.command.Submit(cmd.GuiAddCommandFitsCommand(fitID=activeFit, commandFitIDs=[self.fitID])): |
| 189 | self.mainFrame.additionsPane.select("Command") |
| 190 | |
| 191 | def OnMouseCaptureLost(self, event): |
| 192 | """ Destroy drag information (GH issue #479)""" |
nothing calls this directly
no test coverage detected