1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

fix(widgets): fix an incorrect text replacement (#7548)

This commit is contained in:
DDcrow 2025-01-09 18:07:35 +08:00 committed by GitHub
parent d47865afa1
commit 692830d27c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -128,7 +128,7 @@ static void lv_templ_event(const lv_obj_class_t * class_p, lv_event_t * e)
lv_result_t res;
/*Call the ancestor's event handler*/
res = LV_EVENT_base(MY_CLASS, e);
res = lv_obj_event_base(MY_CLASS, e);
if(res != LV_RESULT_OK) return;
/*Add the widget specific event handling here*/