| 13 | namespace tt::app::settings { |
| 14 | |
| 15 | static void onAppPressed(lv_event_t* e) { |
| 16 | const auto* manifest = static_cast<const AppManifest*>(lv_event_get_user_data(e)); |
| 17 | start(manifest->appId); |
| 18 | } |
| 19 | |
| 20 | static void createWidget(const std::shared_ptr<AppManifest>& manifest, void* parent) { |
| 21 | check(parent); |