Archive browser: update path on dir leave (#2455)
This commit is contained in:
		| @@ -510,12 +510,16 @@ void archive_enter_dir(ArchiveBrowserView* browser, FuriString* path) { | |||||||
|         browser->view, ArchiveBrowserViewModel * model, { idx_temp = model->item_idx; }, false); |         browser->view, ArchiveBrowserViewModel * model, { idx_temp = model->item_idx; }, false); | ||||||
|  |  | ||||||
|     furi_string_set(browser->path, path); |     furi_string_set(browser->path, path); | ||||||
|  |  | ||||||
|     file_browser_worker_folder_enter(browser->worker, path, idx_temp); |     file_browser_worker_folder_enter(browser->worker, path, idx_temp); | ||||||
| } | } | ||||||
|  |  | ||||||
| void archive_leave_dir(ArchiveBrowserView* browser) { | void archive_leave_dir(ArchiveBrowserView* browser) { | ||||||
|     furi_assert(browser); |     furi_assert(browser); | ||||||
|  |  | ||||||
|  |     size_t dirname_start = furi_string_search_rchar(browser->path, '/'); | ||||||
|  |     furi_string_left(browser->path, dirname_start); | ||||||
|  |  | ||||||
|     file_browser_worker_folder_exit(browser->worker); |     file_browser_worker_folder_exit(browser->worker); | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user