Home
last modified time | relevance | path

Searched refs:max_height (Results 1 – 2 of 2) sorted by relevance

/lvgl-2.7.6/src/lv_widgets/
Dlv_dropdown.c116 ext->max_height = (3 * lv_disp_get_ver_res(NULL)) / 4; in lv_dropdown_create()
142 ext->max_height = copy_ext->max_height; in lv_dropdown_create()
382 if(ext->max_height == h) return; in lv_dropdown_set_max_height()
384 ext->max_height = h; in lv_dropdown_set_max_height()
528 return ext->max_height; in lv_dropdown_get_max_height()
633 if(list_h > ext->max_height) list_h = ext->max_height; in lv_dropdown_open()
664 if(list_h > ext->max_height) list_h = ext->max_height; in lv_dropdown_open()
Dlv_dropdown.h60 lv_coord_t max_height; /*Height of the ddlist when opened. (0: auto-size)*/ member