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

rotary: leave the default size from arc + fix style get

This commit is contained in:
Gabor Kiss-Vamosi 2020-06-19 23:41:29 +02:00
parent 95b07a2d23
commit 75a27e4cc7

View File

@ -100,7 +100,6 @@ lv_obj_t * lv_rotary_create(lv_obj_t * par, const lv_obj_t * copy)
lv_obj_set_ext_click_area(rotary, 0, 0, LV_DPI / 10, LV_DPI / 10);
lv_theme_apply(rotary, LV_THEME_ROTARY);
lv_obj_set_height(rotary, LV_DPI / 15);
}
/*Copy an existing rotary*/
else {
@ -371,12 +370,6 @@ static lv_style_list_t * lv_rotary_get_style(lv_obj_t * rotary, uint8_t part)
lv_style_list_t * style_dsc_p;
switch(part) {
case LV_ROTARY_PART_BG:
style_dsc_p = lv_obj_get_style_list(rotary, LV_ARC_PART_BG);
break;
case LV_ROTARY_PART_INDIC:
style_dsc_p = lv_obj_get_style_list(rotary, LV_ARC_PART_INDIC);
break;
case LV_ROTARY_PART_KNOB:
style_dsc_p = &ext->style_knob;
break;