don't switch fields on backspace

This commit is contained in:
Devin J. Pohly 2018-04-01 19:15:48 -05:00
parent 5a01a6e38f
commit c5c6167465
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ void init_form(struct ncform* form, char** list, int max_de, int* de_id)
form->fields[5] = NULL;
/* generates the form */
form->form = new_form(form->fields);
form_opts_off(form->form, O_BS_OVERLOAD);
scale_form(form->form, &(form->height), &(form->width));
}