| 616 | } |
| 617 | |
| 618 | void step() override { |
| 619 | text = port ? port->getDriver()->getName() : ""; |
| 620 | if (text.empty()) { |
| 621 | text = "(No driver)"; |
| 622 | color.a = 0.5f; |
| 623 | } |
| 624 | else { |
| 625 | color.a = 1.f; |
| 626 | } |
| 627 | } |
| 628 | }; |
| 629 | |
| 630 | struct MidiDeviceItem : ui::MenuItem { |
nothing calls this directly
no outgoing calls
no test coverage detected