| 516 | } |
| 517 | |
| 518 | void onDeselect(const DeselectEvent&) override |
| 519 | { |
| 520 | DISTRHO_SAFE_ASSERT_RETURN(module != nullptr,); |
| 521 | |
| 522 | if (module->midiInput.learningId == id) |
| 523 | { |
| 524 | if (focusNote >= 0) |
| 525 | module->setLearnedNote(id, focusNote); |
| 526 | module->midiInput.learningId = -1; |
| 527 | } |
| 528 | } |
| 529 | |
| 530 | void onSelectText(const SelectTextEvent& e) override |
| 531 | { |
nothing calls this directly
no test coverage detected