| 212 | } |
| 213 | |
| 214 | void SpectrumComponent::mouseEnter(const juce::MouseEvent& /*event*/) |
| 215 | { |
| 216 | // When the mouse enters, we want to start a fresh peak-hold session. |
| 217 | // Calling resetPeakData() clears the old values. |
| 218 | if (mDrawPeak) |
| 219 | { |
| 220 | resetPeakData(); |
| 221 | } |
| 222 | } |
| 223 | |
| 224 | void SpectrumComponent::mouseExit(const juce::MouseEvent& /*event*/) |
| 225 | { |
nothing calls this directly
no outgoing calls
no test coverage detected