Skip to content

Commit

Permalink
New naming fixes part 1
Browse files Browse the repository at this point in the history
thanks @Willy-JL !
  • Loading branch information
xMasterX committed Sep 4, 2023
1 parent e305ba8 commit 7de6ad4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scenes/spi_mem_scene_read_filename.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ void spi_mem_scene_read_set_random_filename(SPIMemApp* app) {
size_t filename_start = furi_string_search_rchar(app->file_path, '/');
furi_string_left(app->file_path, filename_start);
}
set_random_name(app->text_buffer, SPI_MEM_TEXT_BUFFER_SIZE);
name_generator_make_auto(app->text_buffer, SPI_MEM_TEXT_BUFFER_SIZE, TAG);
}

void spi_mem_scene_read_filename_on_enter(void* context) {
Expand Down
2 changes: 1 addition & 1 deletion spi_mem_app_i.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <gui/modules/text_input.h>
#include <storage/storage.h>
#include <toolbox/path.h>
#include <toolbox/random_name.h>
#include <toolbox/name_generator.h>
#include "scenes/spi_mem_scene.h"
#include "lib/spi/spi_mem_worker.h"
#include "spi_mem_manager_icons.h"
Expand Down

0 comments on commit 7de6ad4

Please sign in to comment.