1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

Loader: good looking error messages (#2873)

* Loader: special error for unknown external app
* Loader: update special error
* Loader: beautify GUI errors, remove redundant logs
* Loader: fix gui error vertical position
* Desktop settings: add external menu apps
* Desktop: smaller settings struct and fix incorrect behavior with ext apps

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
This commit is contained in:
Sergey Gavrilov
2023-07-13 15:02:59 +03:00
committed by GitHub
parent b55d97f827
commit 8dc1edac18
5 changed files with 68 additions and 43 deletions

View File

@@ -60,7 +60,7 @@ static void loader_menu_apps_callback(void* context, uint32_t index) {
static void loader_menu_external_apps_callback(void* context, uint32_t index) {
UNUSED(context);
const char* path = FLIPPER_EXTERNAL_APPS[index].path;
const char* path = FLIPPER_EXTERNAL_APPS[index].name;
loader_menu_start(path);
}