(self, constraintModel, parent=None)
| 21 | |
| 22 | class EntryDelegate(QItemDelegate): |
| 23 | def __init__(self, constraintModel, parent=None): |
| 24 | super().__init__(parent) |
| 25 | |
| 26 | self.constraintModel = constraintModel |
| 27 | |
| 28 | def editorEvent(self, event, model, option, index): |
| 29 | if event.type() != QEvent.MouseButtonDblClick: |
nothing calls this directly
no outgoing calls
no test coverage detected