1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +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,6 +265,8 @@ bool lv_rotary_is_dragged(const lv_obj_t * rotary);
*/ */
static inline lv_rotary_type_t lv_rotary_get_type(lv_obj_t * rotary) static inline lv_rotary_type_t lv_rotary_get_type(lv_obj_t * rotary)
{ {
lv_bar_type_t type = lv_bar_get_type(rotary);
if(type == LV_ROTARY_TYPE_NORMAL)
return LV_ROTARY_TYPE_NORMAL; return LV_ROTARY_TYPE_NORMAL;
} }