fix(table): rename shortened function names to full names (#4918)

This commit is contained in:
PGNetHun
2023-12-04 22:57:47 +01:00
committed by GitHub
parent 55d35329ba
commit 91020ea20e
7 changed files with 13 additions and 11 deletions

View File

@@ -70,7 +70,7 @@ void lv_example_table_2(void)
/*Set a smaller height to the table. It'll make it scrollable*/
lv_obj_set_size(table, LV_SIZE_CONTENT, 200);
lv_table_set_col_width(table, 0, 150);
lv_table_set_column_width(table, 0, 150);
lv_table_set_row_count(table, ITEM_CNT); /*Not required but avoids a lot of memory reallocation lv_table_set_set_value*/
lv_table_set_column_count(table, 1);