Migrating from 7.5 to 8.1 - Table corners

Description

I’m trying to migrate from 7.5 to 8.1 and am having a new issues.
This one is related to tables having 90 degree corners instead of the rounded ones in 7.5

What MCU/Processor/Board and compiler are you using?

Simulator - Eclipse

What LVGL version are you using?

8.1

What do you want to achieve?

Conversion from 7.5 to 8.1

What have you tried so far?

Reviewing the documentation

Code to reproduce

The code block(s) should be formatted like:


    sensorTable = lv_table_create(parent, NULL);
    lv_obj_set_drag_parent(sensorTable, true);

    //tbl, horizontal, vertical
    lv_obj_align(sensorTable, parent, LV_ALIGN_IN_TOP_LEFT, 30, 25);

Screenshot and/or video

V 8.1:

V 7.5:

Try this:

    lv_obj_set_style_radius(table, 10, 0);
    lv_obj_set_style_clip_corner(table, true, 0);

That worked perfectly!

Thank you