| 46 | NotificationScreen::~NotificationScreen() = default; |
| 47 | |
| 48 | void NotificationScreen::begin() |
| 49 | { |
| 50 | menuform->findControl("BUTTON_RESUME")->addCallback(FormEventType::ButtonClick, [](Event *) { |
| 51 | fw().stageQueueCommand({StageCmd::Command::POP}); |
| 52 | }); |
| 53 | |
| 54 | menuform->findControlTyped<CheckBox>("CHECKBOX_ALWAYS_PAUSE")->setChecked(true); |
| 55 | } |
| 56 | |
| 57 | void NotificationScreen::pause() {} |
| 58 |
nothing calls this directly
no test coverage detected