Make lv_arc widget not touchable

Hello

Where or how can I make the lv_arc widget NOT touchable?

I think lv_obj_clear_flag(arc, LV_OBJ_FLAG_CLICKABLE); /*To not allow adjusting by click*/ is not the correct command…?

Thank you

If you want to prevent the object’s value from being changed (by touching) lv_obj_clear_flag(arc, LV_OBJ_FLAG_CLICKABLE) should work. It should also work for just about any object AFAIK.