| 655 | } |
| 656 | |
| 657 | void setTooltip() { |
| 658 | std::string_view activeName = module->programSelector.getSection(section).getCurrentProgramName(); |
| 659 | tooltip = new ui::Tooltip; |
| 660 | tooltip->text = activeName; |
| 661 | APP->scene->addChild(tooltip); |
| 662 | } |
| 663 | |
| 664 | void onHover(const event::Hover& e) override { |
| 665 | LightWidget::onHover(e); |
nothing calls this directly
no test coverage detected