Minor change : replaced a lonely lv_label_set_text by lv_label_set_text_static

This commit is contained in:
anschrammh 2024-07-31 16:05:45 +02:00
parent 75b2dc5fc2
commit 8cf9926984

View File

@ -1138,7 +1138,7 @@ static void update_menu_list_item_text(lv_obj_t *menu_list_item, const char *tex
lv_obj_t *label = lv_obj_get_child(menu_list_item, 0);
if(label)
{
lv_label_set_text(label, text);
lv_label_set_text_static(label, text);
}
}