Skip to content

Commit

Permalink
Fix NFC write result crash
Browse files Browse the repository at this point in the history
  • Loading branch information
andreock committed Nov 28, 2024
1 parent 8773069 commit c2ef55c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/UI/pages/NFC/NFCWriteResultPage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class NFCWriteResultPage : public Page {
};
~NFCWriteResultPage();
void display();

void click(int pos, void callback()) { grid->click(pos, callback); };
void click() {};
void click(int pos, void callback()) {};
void set_selected(int pos, bool status) { grid->set_selected(pos, status); };
void set_wrote_sectors(int sectors) {
wrote_sectors->set_text("Wrote sectors: " + (String)sectors);
Expand Down

0 comments on commit c2ef55c

Please sign in to comment.