refactor(table): convert lv_table_add_cell_ctrl to a setter

This commit is contained in:
Gabor Kiss-Vamosi
2025-01-13 22:10:32 +01:00
parent 5f2888d93a
commit 39c4011864
7 changed files with 17 additions and 23 deletions

View File

@@ -71,7 +71,7 @@ Merge cells
-----------
Cells can be merged horizontally with
:cpp:expr:`lv_table_add_cell_ctrl(table, row, col, LV_TABLE_CELL_CTRL_MERGE_RIGHT)`.
:cpp:expr:`lv_table_set_cell_ctrl(table, row, col, LV_TABLE_CELL_CTRL_MERGE_RIGHT)`.
To merge more adjacent cells, call this function for each cell.
Scrolling