| 360 | repaint(); |
| 361 | } |
| 362 | void GRainbowAudioProcessorEditor::filesDropped(const juce::StringArray& files, int, int) { |
| 363 | jassert(files.size() == 1); |
| 364 | mIsFileHovering = false; |
| 365 | repaint(); |
| 366 | loadFile(juce::File(files[0])); |
| 367 | } |
| 368 | |
| 369 | /** Pauses audio to open file |
| 370 | @param path optional path to load, otherwise will prompt user for file |
nothing calls this directly
no outgoing calls
no test coverage detected