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/scened-app-example
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/scened-app-example')
-rw-r--r--applications/scened-app-example/scene/scened-app-scene-byte-input.cpp2
-rw-r--r--applications/scened-app-example/scene/scened-app-scene-byte-input.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/scened-app-example/scene/scened-app-scene-byte-input.cpp b/applications/scened-app-example/scene/scened-app-scene-byte-input.cpp
index 19d81bc5..d51aaa03 100644
--- a/applications/scened-app-example/scene/scened-app-scene-byte-input.cpp
+++ b/applications/scened-app-example/scene/scened-app-scene-byte-input.cpp
@@ -25,7 +25,7 @@ void ScenedAppSceneByteInput::on_exit(ScenedApp* app) {
app->view_controller.get<ByteInputVM>()->clean();
}
-void ScenedAppSceneByteInput::result_callback(void* context, uint8_t* bytes, uint8_t bytes_count) {
+void ScenedAppSceneByteInput::result_callback(void* context) {
ScenedApp* app = static_cast<ScenedApp*>(context);
ScenedApp::Event event;
diff --git a/applications/scened-app-example/scene/scened-app-scene-byte-input.h b/applications/scened-app-example/scene/scened-app-scene-byte-input.h
index de73ab12..53345d83 100644
--- a/applications/scened-app-example/scene/scened-app-scene-byte-input.h
+++ b/applications/scened-app-example/scene/scened-app-scene-byte-input.h
@@ -8,7 +8,7 @@ public:
void on_exit(ScenedApp* app) final;
private:
- void result_callback(void* context, uint8_t* bytes, uint8_t bytes_count);
+ void result_callback(void* context);
uint8_t data[4] = {
0x01,