(self, type, fitID)
| 118 | event.Skip() |
| 119 | |
| 120 | def handleDrag(self, type, fitID): |
| 121 | # Those are drags coming from pyfa sources, NOT builtin wx drags |
| 122 | if type == "fit": |
| 123 | activeFit = self.mainFrame.getActiveFit() |
| 124 | if activeFit: |
| 125 | self.mainFrame.command.Submit(cmd.GuiAddCommandFitsCommand(fitID=activeFit, commandFitIDs=[fitID])) |
| 126 | |
| 127 | @staticmethod |
| 128 | def fitSort(fit): |
nothing calls this directly
no test coverage detected