(self, event)
| 209 | self.PopupMenu(menu) |
| 210 | |
| 211 | def onLeftDoubleClick(self, event): |
| 212 | row, _ = self.HitTest(event.Position) |
| 213 | if row != -1: |
| 214 | try: |
| 215 | commandFit = self.fits[row] |
| 216 | except IndexError: |
| 217 | return |
| 218 | self.removeCommandFits([commandFit]) |
| 219 | |
| 220 | def removeCommandFits(self, commandFits): |
| 221 | fitID = self.mainFrame.getActiveFit() |
nothing calls this directly
no test coverage detected