From d3cf757eade9c4e16ce392f745851db4759278d1 Mon Sep 17 00:00:00 2001 From: Willy-JL Date: Tue, 7 Feb 2023 01:08:05 +0000 Subject: [PATCH] Fix typos --- applications/services/gui/modules/file_browser_worker.c | 2 +- .../xtreme_settings/scenes/xtreme_settings_scene_start.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/services/gui/modules/file_browser_worker.c b/applications/services/gui/modules/file_browser_worker.c index d4e83aefb..6cbf4b3e8 100644 --- a/applications/services/gui/modules/file_browser_worker.c +++ b/applications/services/gui/modules/file_browser_worker.c @@ -230,7 +230,7 @@ static bool // FLIPPER DEVS MOMENT // this used to load the file list in chunks, and then sort it... // so while scrolling, it loads more files and sorts them... - // chances are, the new files are higner in the sorted list... + // chances are, the new files are higher in the sorted list... // so the files keep shifting around while scrolling... // now this does something intelligent and loads all in one go. // might take a few milliseconds longer, but atleast it works :kekw: diff --git a/applications/settings/xtreme_settings/scenes/xtreme_settings_scene_start.c b/applications/settings/xtreme_settings/scenes/xtreme_settings_scene_start.c index d6532af2c..c0f2262fd 100644 --- a/applications/settings/xtreme_settings/scenes/xtreme_settings_scene_start.c +++ b/applications/settings/xtreme_settings/scenes/xtreme_settings_scene_start.c @@ -228,7 +228,7 @@ void xtreme_settings_scene_start_on_enter(void* context) { variable_item_set_current_value_text(item, battery_style_names[value_index]); item = variable_item_list_add( - var_item_list, "Sort folders before", 2, xtreme_settings_scene_start_sort_folders_before_changed, app); + var_item_list, "Sort dirs before", 2, xtreme_settings_scene_start_sort_folders_before_changed, app); variable_item_set_current_value_index(item, !xtreme_settings->sort_ignore_dirs); variable_item_set_current_value_text(item, !xtreme_settings->sort_ignore_dirs ? "ON" : "OFF");