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>2021-09-29 17:08:24 +0300
committerGitHub <noreply@github.com>2021-09-29 17:08:24 +0300
commit2eafae6b90b1199e1771409434565838da507f8a (patch)
treeab12d6b05bd46145b81363086180da01d7289f24 /applications/subghz
parent8b6c466058a63922e7846ebffcfc7b14884d455a (diff)
[FL-1498] Keyboard save focus (#730)
* text_input: set focus on Save button if text is set * text_input: add clear API, format documentation * all: rework text input clean with new API
Diffstat (limited to 'applications/subghz')
-rw-r--r--applications/subghz/scenes/subghz_scene_save_name.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/applications/subghz/scenes/subghz_scene_save_name.c b/applications/subghz/scenes/subghz_scene_save_name.c
index 81255723..ee21238a 100644
--- a/applications/subghz/scenes/subghz_scene_save_name.c
+++ b/applications/subghz/scenes/subghz_scene_save_name.c
@@ -61,6 +61,5 @@ void subghz_scene_save_name_on_exit(void* context) {
SubGhz* subghz = context;
// Clear view
- text_input_set_header_text(subghz->text_input, NULL);
- text_input_set_result_callback(subghz->text_input, NULL, NULL, NULL, 0, false);
+ text_input_clean(subghz->text_input);
}