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

fix(arabic): support processing again alraedy processed texts with _lv_txt_ap_proc

This commit is contained in:
Gabor Kiss-Vamosi 2020-11-21 23:49:37 +01:00
parent 440c79e40c
commit 8361d89a55
2 changed files with 8 additions and 0 deletions

View File

@ -10,6 +10,7 @@
### Bugfixes
- fix(btnmatrix) handle arabic texts in button matrices
- fix(indev) disabled object shouldn't absorb clicks but let the parent to be clicked
- fix(arabic) support processing again already processed texts with _lv_txt_ap_proc
## v7.7.2 (Planned to 17.11.2020)
### Bugfixes

View File

@ -211,6 +211,13 @@ static uint32_t lv_ap_get_char_index(uint16_t c)
for(uint8_t i = 0; ap_chars_map[i].char_end_form; i++) {
if(c == (ap_chars_map[i].char_offset + LV_AP_ALPHABET_BASE_CODE))
return i;
else if (c == ap_chars_map[i].char_end_form //is it an End form
|| c == (ap_chars_map[i].char_end_form + ap_chars_map[i].char_begining_form_offset) //is it a Begining form
|| c == (ap_chars_map[i].char_end_form + ap_chars_map[i].char_middle_form_offset) //is it a middle form
|| c == (ap_chars_map[i].char_end_form + ap_chars_map[i].char_isolated_form_offset)) //is it an isolated form
{
return i;
}
}
return LV_UNDEF_ARABIC_PERSIAN_CHARS;
}