1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00

Use rotary param in type getter

This commit is contained in:
Adam Martini 2020-06-18 22:43:38 -07:00
parent 6dddbde387
commit a696aef959

View File

@ -265,7 +265,9 @@ bool lv_rotary_is_dragged(const lv_obj_t * rotary);
*/
static inline lv_rotary_type_t lv_rotary_get_type(lv_obj_t * rotary)
{
return LV_ROTARY_TYPE_NORMAL;
lv_bar_type_t type = lv_bar_get_type(rotary);
if(type == LV_ROTARY_TYPE_NORMAL)
return LV_ROTARY_TYPE_NORMAL;
}
/**********************