(self, ev)
| 65 | if Qt.LeftButton & ev.button(): |
| 66 | self.drawsig.emit(True) |
| 67 | def mouseReleaseEvent(self, ev): |
| 68 | if Qt.LeftButton & ev.button(): |
| 69 | self.drawsig.emit(False) |
| 70 | |
| 71 | def paintEvent(self, ev): |
| 72 | if len(self.points) <= 0 and len(self.current_points) <= 0 : return |
no outgoing calls
no test coverage detected