| 639 | struct MidiDeviceChoice : LedDisplayCenterChoiceEx { |
| 640 | midi::Port* outPort, *inPort; |
| 641 | void onAction(const event::Action& e) override { |
| 642 | if (!outPort || !inPort) |
| 643 | return; |
| 644 | createContextMenu(); |
| 645 | } |
| 646 | |
| 647 | virtual ui::Menu* createContextMenu() { |
| 648 | ui::Menu* menu = createMenu(); |
nothing calls this directly
no outgoing calls
no test coverage detected