Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgornekich <n.gorbadey@gmail.com>2022-04-19 22:23:50 +0300
committerGitHub <noreply@github.com>2022-04-19 22:23:50 +0300
commit9351076c89cad62e8a33fd2e809e7e81eaa37fca (patch)
tree106997800176fb3376857cc6ca905806301a7de8 /applications/applications.c
parent57312961e8ced1ac51f99bdd9ce481a0350b985a (diff)
[FL-2475] Text Box add three dots trim option (#1136)
* introduce text box debug application * text box: add strip to dots option * applications: update text box usage Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/applications/applications.c b/applications/applications.c
index aba50fee..6b4c6321 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -43,6 +43,7 @@ extern int32_t usb_test_app(void* p);
extern int32_t vibro_test_app(void* p);
extern int32_t bt_hid_app(void* p);
extern int32_t battery_test_app(void* p);
+extern int32_t text_box_test_app(void* p);
// Plugins
extern int32_t music_player_app(void* p);
@@ -304,6 +305,10 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
#ifdef APP_BATTERY_TEST
{.app = battery_test_app, .name = "Battery Test", .stack_size = 1024, .icon = NULL},
#endif
+
+#ifdef APP_TEXT_BOX_TEST
+ {.app = text_box_test_app, .name = "Text Box Test", .stack_size = 1024, .icon = NULL},
+#endif
};
const size_t FLIPPER_DEBUG_APPS_COUNT = COUNT_OF(FLIPPER_DEBUG_APPS);