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

Merge 0ca874bc49fef8d4627af22fd162f3fb2428f26b into dev

This commit is contained in:
github-actions[bot] 2020-12-20 14:20:22 +00:00 committed by GitHub
commit 5236ad0f9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -337,7 +337,7 @@ void lv_dropdown_add_option(lv_obj_t * ddlist, const char * option, uint32_t pos
LV_ASSERT_MEM(ins_buf);
if(ins_buf == NULL) return;
#if LV_USE_ARABIC_PERSIAN_CHARS == 0
strcpy(ins_buf, options);
strcpy(ins_buf, option);
#else
_lv_txt_ap_proc(option, ins_buf);
#endif