-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add fallback cli option #87
Comments
It's really useful. @puzrin? |
I dont' track current state of lvgl. Is |
https://docs.lvgl.io/8.3/overview/font.html#use-font-fallback if I try to assign fallback option like in docs my_font.fallback = &lv_font_montserrat_12; I got error
|
It was added in v8.2. |
neuschaefer
added a commit
to neuschaefer/lv_font_conv
that referenced
this issue
Mar 13, 2024
neuschaefer
added a commit
to neuschaefer/lv_font_conv
that referenced
this issue
Mar 13, 2024
neuschaefer
added a commit
to neuschaefer/lv_font_conv
that referenced
this issue
Mar 14, 2024
Note that the fallback font is declared extern in the generated file. This is done so that it's possible to use fallback fonts that are not declared in LVGL's headers. Fixes: lvgl#87
neuschaefer
added a commit
to neuschaefer/lv_font_conv
that referenced
this issue
Mar 14, 2024
Note that the fallback font is declared extern in the generated file. This is done so that it's possible to use fallback fonts that are not declared in LVGL's headers. Fixes: lvgl#87
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently
const lv_font_t my_font
is const, andfallback
field can only be assigned by editingmy_font.c
directly.after this line
lv_font_conv/lib/writers/lvgl/lv_table_head.js
Line 77 in 4955966
add
where
lv_font_montserrat_12
will befallback
cli optionThe text was updated successfully, but these errors were encountered: