Group indev create blue and red border around object in group

What do you want to achieve?

Dont use this borders

What have you tried so far?

No group screen ok.

lv_group_add_obj(g1, ui_Screen3_Roller1);
lv_group_set_editing(g1, true);

red border
second line commented blue border

How disable this borders ???

Screenshot or video

Others

  • SquareLine Studio version: 1.1.1 lv 8.2.0
  • Operating system:
  • Target hardware: ESP32

SOLVED

  lv_obj_remove_style(ui_Screen3_Roller1, NULL, LV_STATE_FOCUS_KEY);
  lv_obj_remove_style(ui_Screen3_Roller1, NULL, LV_STATE_EDITED);

1 Like