| 559 | } |
| 560 | |
| 561 | void View::onNavigate() { |
| 562 | auto scoped_lockable = lvgl::getSyncLock()->asScopedLock(); |
| 563 | if (scoped_lockable.lock(lvgl::defaultLockTime)) { |
| 564 | lv_obj_add_flag(action_list, LV_OBJ_FLAG_HIDDEN); |
| 565 | } |
| 566 | } |
| 567 | |
| 568 | void View::onResult(LaunchId launchId, Result result, std::unique_ptr<Bundle> bundle) { |
| 569 | if (result != Result::Ok || bundle == nullptr) { |
nothing calls this directly
no test coverage detected