Skip to content

Commit

Permalink
fix(NFC Maker): Show illegal symbols on keyboard
Browse files Browse the repository at this point in the history
The text input already has this functionality to show these extra symbols in place of the numbers 0-9 when opening the 'secondary' keyboard. It just wasn't being used.
  • Loading branch information
956MB committed Dec 24, 2024
1 parent 2a7953f commit 5a18986
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nfc_maker/dropin/text_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ TextInput* text_input_alloc(void) {
{
model->validator_text = furi_string_alloc();
model->minimum_length = 1;
model->illegal_symbols = false;
model->illegal_symbols = true;
model->cursor_pos = 0;
model->cursor_select = false;
},
Expand Down Expand Up @@ -696,7 +696,7 @@ void text_input_reset(TextInput* text_input) {
model->selected_column = 0;
model->selected_keyboard = 0;
model->minimum_length = 1;
model->illegal_symbols = false;
model->illegal_symbols = true;
model->clear_default_text = false;
model->cursor_pos = 0;
model->cursor_select = false;
Expand Down

0 comments on commit 5a18986

Please sign in to comment.