Skip to content

Commit 42f51ba

Browse files
authored
Merge pull request #593 from howard0su/quick_fix
Font is always u8. change font in disp_listbox to u8.
2 parents 3fed5fd + 88017dc commit 42f51ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/config/display.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ struct disp_keyboard {
4141
};
4242

4343
struct disp_listbox {
44-
u16 font;
4544
u16 bg_color;
4645
u16 fg_color;
4746
u16 bg_select;
4847
u16 fg_select;
4948
u16 bg_bar;
5049
u16 fg_bar;
50+
u8 font;
5151
};
5252

5353
struct disp_bargraph {

0 commit comments

Comments
 (0)