| 69 | } |
| 70 | |
| 71 | static void onNewFilePressedCallback(lv_event_t* event) { |
| 72 | auto* view = static_cast<View*>(lv_event_get_user_data(event)); |
| 73 | view->onNewFilePressed(); |
| 74 | } |
| 75 | |
| 76 | static void onNewFolderPressedCallback(lv_event_t* event) { |
| 77 | auto* view = static_cast<View*>(lv_event_get_user_data(event)); |
nothing calls this directly
no test coverage detected