| 58 | } |
| 59 | |
| 60 | void ControlPointComponent::mouseUp(const MouseEvent &event) { |
| 61 | if(shouldDebounce(event)) { return; } |
| 62 | lastMouseClick = event.eventTime; |
| 63 | |
| 64 | ignoreUnused(event); |
| 65 | draggedPoint = nullptr; |
| 66 | draggedPointIndex = 0; |
| 67 | |
| 68 | populateOutputValues(); |
| 69 | } |
| 70 | |
| 71 | void ControlPointComponent::mouseDrag (const MouseEvent& e) |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected