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:
authorSG <who.just.the.doctor@gmail.com>2021-07-04 19:01:16 +0300
committerGitHub <noreply@github.com>2021-07-04 19:01:16 +0300
commit7734fb4018421c3d91013fad3b57980c3add84a0 (patch)
tree562d827973564de049610f5ccf060f53acb69952 /applications/ibutton
parentf82a4a226015ac18410b6f2c7b40178340e0e329 (diff)
[FL-1371][FL-1502] Lfrfid app: fixes. (#555)
* Gui module byte-input: changed api * Gui: changed font height in multiline text according to guideline * Apps lrfid, nfc: changed send and receive icon * App lfrfid: fix text, fix scene switсh * Elements: multiline text framed, fix paddings * Gui: remove duplicate definition of elements_multiline_text_framed * App NFC: update byte_input callback signature * App subghz: fix text lines in capture scene * App subghz: position of the text is aligned with the guidelines and other scenes * App subghz: removed mockup Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Diffstat (limited to 'applications/ibutton')
-rw-r--r--applications/ibutton/scene/ibutton-scene-add-value.cpp2
-rw-r--r--applications/ibutton/scene/ibutton-scene-add-value.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/ibutton/scene/ibutton-scene-add-value.cpp b/applications/ibutton/scene/ibutton-scene-add-value.cpp
index 794d86ff..5f8e9f66 100644
--- a/applications/ibutton/scene/ibutton-scene-add-value.cpp
+++ b/applications/ibutton/scene/ibutton-scene-add-value.cpp
@@ -40,7 +40,7 @@ void iButtonSceneAddValue::on_exit(iButtonApp* app) {
byte_input_set_header_text(byte_input, {0});
}
-void iButtonSceneAddValue::byte_input_callback(void* context, uint8_t* bytes, uint8_t bytes_count) {
+void iButtonSceneAddValue::byte_input_callback(void* context) {
iButtonApp* app = static_cast<iButtonApp*>(context);
iButtonEvent event;
diff --git a/applications/ibutton/scene/ibutton-scene-add-value.h b/applications/ibutton/scene/ibutton-scene-add-value.h
index 673bb609..ed9df460 100644
--- a/applications/ibutton/scene/ibutton-scene-add-value.h
+++ b/applications/ibutton/scene/ibutton-scene-add-value.h
@@ -8,5 +8,5 @@ public:
void on_exit(iButtonApp* app) final;
private:
- void byte_input_callback(void* context, uint8_t* bytes, uint8_t bytes_count);
+ void byte_input_callback(void* context);
}; \ No newline at end of file