Disabling lv_list scrolling with mouse or touch

Hi, I have a lv_list that I want to scroll only with two dedicated buttons (Up and Down) near the list.
I don’t want the user to be able to interact directly with the list. How do I disable the scrolling using mouse or touch? I can’t find the right functions, thanks

Got it!

lv.obj.set_drag(lv.page.__cast__(mylist).get_scrollable(), False)

After many hours of trial and error I found the solution thanks to this post.