1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Add missing = in lv_btnm_get_style function

This commit is contained in:
Carlos 2018-11-07 21:54:51 -06:00
parent 2a27c469fe
commit 63075b73bd

View File

@ -369,7 +369,7 @@ lv_style_t * lv_btnm_get_style(const lv_obj_t * btnm, lv_btnm_style_t type)
style = lv_obj_get_style(btnm);
break;
case LV_BTNM_STYLE_BTN_REL:
style ext->styles_btn[LV_BTN_STATE_REL];
style = ext->styles_btn[LV_BTN_STATE_REL];
break;
case LV_BTNM_STYLE_BTN_PR:
style = ext->styles_btn[LV_BTN_STATE_PR];