From 9e08427c010837632a16898fe65e62ec20e39811 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Wed, 15 Mar 2023 16:19:56 +0000 Subject: [PATCH] Expose CUSTOM_ICON_MAX_SIZE --- applications/services/gui/modules/file_browser.c | 2 -- applications/services/gui/modules/file_browser.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/services/gui/modules/file_browser.c b/applications/services/gui/modules/file_browser.c index 6a87fa0f5..8affe8330 100644 --- a/applications/services/gui/modules/file_browser.c +++ b/applications/services/gui/modules/file_browser.c @@ -22,8 +22,6 @@ #define ITEM_LIST_LEN_MAX 50 -#define CUSTOM_ICON_MAX_SIZE 32 - #define SCROLL_INTERVAL (333) #define SCROLL_DELAY (2) diff --git a/applications/services/gui/modules/file_browser.h b/applications/services/gui/modules/file_browser.h index 879d62c4e..e8e9228f7 100644 --- a/applications/services/gui/modules/file_browser.h +++ b/applications/services/gui/modules/file_browser.h @@ -11,6 +11,8 @@ extern "C" { #endif +#define CUSTOM_ICON_MAX_SIZE 32 + typedef struct FileBrowser FileBrowser; typedef void (*FileBrowserCallback)(void* context);