Revert "keyboard.c make editline respect current UI font"
This reverts commit ebebef5566
.
Reason for revert: I don't want to get too deep into this till I come back to the keyboard rewrite (hopefully)
Change-Id: Ia273f1a19a042be2dd0f1ee46690c03f2865cd95
This commit is contained in:
parent
255a34c685
commit
91c7e333d7
1 changed files with 2 additions and 2 deletions
|
@ -169,7 +169,7 @@ static void keyboard_layout(struct viewport *kbd_vp,
|
||||||
vp->y = 0; /* TOP */
|
vp->y = 0; /* TOP */
|
||||||
vp->width = sc_w;
|
vp->width = sc_w;
|
||||||
vp->height = text_height;
|
vp->height = text_height;
|
||||||
vp->font = sc->getuifont();//pm->curfont;
|
vp->font = pm->curfont;
|
||||||
text_height += vp->x + 3;
|
text_height += vp->x + 3;
|
||||||
|
|
||||||
/* MENU */
|
/* MENU */
|
||||||
|
@ -1052,7 +1052,7 @@ static void kbd_draw_edit_line(struct keyboard_parameters *pm,
|
||||||
sc->hline(0, sc_w - 1, y);
|
sc->hline(0, sc_w - 1, y);
|
||||||
#endif
|
#endif
|
||||||
/* write out the text */
|
/* write out the text */
|
||||||
sc->setfont(vp->font); //pm->curfont
|
sc->setfont(pm->curfont);
|
||||||
|
|
||||||
pm->leftpos = MAX(0, MIN(state->len_utf8, state->editpos + 2)
|
pm->leftpos = MAX(0, MIN(state->len_utf8, state->editpos + 2)
|
||||||
- pm->max_chars_text);
|
- pm->max_chars_text);
|
||||||
|
|
Loading…
Reference in a new issue