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

lv_roller: lv_roller_get_selected_str: bugfix

This commit is contained in:
Gabor Kiss-Vamosi 2018-01-10 09:43:19 +01:00
parent 9b664e2944
commit 86110cf1de

View File

@ -138,7 +138,7 @@ static inline uint16_t lv_roller_get_selected(lv_obj_t *roller)
*/
static inline void lv_roller_get_selected_str(lv_obj_t * roller, char * buf)
{
lv_roller_get_selected_str(roller, buf);
lv_ddlist_get_selected_str(roller, buf);
}
/**