fix(font): always call font->release_glyph
MicroPython CI / Build esp32 port (push) Has been cancelled
MicroPython CI / Build rp2 port (push) Has been cancelled
MicroPython CI / Build stm32 port (push) Has been cancelled
MicroPython CI / Build unix port (push) Has been cancelled
BOM Check / bom-check (push) Has been cancelled
Verify that lv_conf_internal.h matches repository state / verify-conf-internal (push) Has been cancelled
Verify the widget property name / verify-property-name (push) Has been cancelled
Verify code formatting / verify-formatting (push) Has been cancelled
Compare file templates with file names / template-check (push) Has been cancelled
Build docs / build-and-deploy (push) Has been cancelled
Test API JSON generator / Test API JSON (push) Has been cancelled
Port repo release update / run-release-branch-updater (push) Has been cancelled
Verify Font License / verify-font-license (push) Has been cancelled
Verify Kconfig / verify-kconfig (push) Has been cancelled

This commit is contained in:
Gabor Kiss-Vamosi
2026-04-29 21:25:33 +02:00
parent 481800a68b
commit e59feeba67
-3
View File
@@ -80,9 +80,6 @@ const void * lv_font_get_glyph_static_bitmap(lv_font_glyph_dsc_t * g_dsc)
void lv_font_glyph_release_draw_data(lv_font_glyph_dsc_t * g_dsc)
{
LV_ASSERT_NULL(g_dsc);
if(!g_dsc->entry) {
return;
}
const lv_font_t * font = g_dsc->resolved_font;