riaancillie

Results 2 issues of riaancillie

I have created a custom widget by deriving it from a base LVGL object ``` class SpinLabel(lv.label): def __init__(self, parent): super().__init__(parent) self.add_flag(lv.obj.FLAG.SCROLLABLE) self.set_user_data(self) ``` When trying to style the object...

I can't find the mp equivalent of function `lv_group_focus_obj` `lv.group_t` doesn't have a method called `focus_obj` nor can I find anything related to forcing focus in `lv.obj` > >>> lv.group_t....