| 596 | struct MidiDriverChoice : LedDisplayCenterChoiceEx { |
| 597 | midi::Port* port; |
| 598 | void onAction(const event::Action& e) override { |
| 599 | if (!port) |
| 600 | return; |
| 601 | createContextMenu(); |
| 602 | } |
| 603 | |
| 604 | virtual ui::Menu* createContextMenu() { |
| 605 | ui::Menu* menu = createMenu(); |
nothing calls this directly
no outgoing calls
no test coverage detected