Skip to content

Commit

Permalink
Merge pull request #561 from alranel/patch-1
Browse files Browse the repository at this point in the history
Allow long WiFi passwords in the GUI
  • Loading branch information
fvanroie authored Oct 27, 2023
2 parents 1b24478 + cfaf149 commit 9428da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hasp_oobe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ static void oobeSetupSsid(void)
lv_obj_set_style_local_text_font(pwd_ta, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, defaultfont);

lv_textarea_set_text(pwd_ta, "");
lv_textarea_set_max_length(pwd_ta, 32);
lv_textarea_set_max_length(pwd_ta, MAX_PASSWORD_LENGTH);
lv_textarea_set_pwd_mode(pwd_ta, true);
lv_textarea_set_one_line(pwd_ta, true);
lv_textarea_set_cursor_hidden(pwd_ta, true);
Expand Down

0 comments on commit 9428da5

Please sign in to comment.