mirror of
https://github.com/lvgl/lvgl.git
synced 2025-02-04 07:13:00 +08:00
fix(widgets): fix an incorrect text replacement (#7548)
This commit is contained in:
parent
d47865afa1
commit
692830d27c
@ -128,7 +128,7 @@ static void lv_templ_event(const lv_obj_class_t * class_p, lv_event_t * e)
|
|||||||
lv_result_t res;
|
lv_result_t res;
|
||||||
|
|
||||||
/*Call the ancestor's event handler*/
|
/*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;
|
if(res != LV_RESULT_OK) return;
|
||||||
|
|
||||||
/*Add the widget specific event handling here*/
|
/*Add the widget specific event handling here*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user