Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

keyboard.c make editline respect current UI font

Change-Id: I4dc95d42544a10df8086cc58c4a305d45b56bb1b

authored by

William Wilgus and committed by
William Wilgus
ebebef55 2d9cb673

+2 -2
+2 -2
apps/recorder/keyboard.c
··· 169 169 vp->y = 0; /* TOP */ 170 170 vp->width = sc_w; 171 171 vp->height = text_height; 172 - vp->font = pm->curfont; 172 + vp->font = sc->getuifont();//pm->curfont; 173 173 text_height += vp->x + 3; 174 174 175 175 /* MENU */ ··· 1052 1052 sc->hline(0, sc_w - 1, y); 1053 1053 #endif 1054 1054 /* write out the text */ 1055 - sc->setfont(pm->curfont); 1055 + sc->setfont(vp->font); //pm->curfont 1056 1056 1057 1057 pm->leftpos = MAX(0, MIN(state->len_utf8, state->editpos + 2) 1058 1058 - pm->max_chars_text);