1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-02-04 07:13:00 +08:00

Merge branch 'master' into dev

This commit is contained in:
Gabor Kiss-Vamosi 2021-02-16 15:25:31 +01:00
commit 351008edcc
7 changed files with 25 additions and 17 deletions

View File

@ -1,4 +1,4 @@
# Kconfig file for LVGL v7.8.1
# Kconfig file for LVGL v7.10.1
menu "LVGL configuration"

View File

@ -255,10 +255,18 @@ static uint32_t lv_txt_lam_alef(uint32_t ch_curr, uint32_t ch_next)
return 0;
}
ch_code = ap_chars_map[ch_next].char_offset + LV_AP_ALPHABET_BASE_CODE;
if (ch_code == 0x0622) { return 0xFEF5; } // (lam-alef) mad
if (ch_code == 0x0623) { return 0xFEF7; } // (lam-alef) top hamza
if (ch_code == 0x0625) { return 0xFEF9; } // (lam-alef) bot hamza
if (ch_code == 0x0627) { return 0xFEFB; } // (lam-alef) alef
if(ch_code == 0x0622) {
return 0xFEF5; // (lam-alef) mad
}
if(ch_code == 0x0623) {
return 0xFEF7; // (lam-alef) top hamza
}
if(ch_code == 0x0625) {
return 0xFEF9; // (lam-alef) bot hamza
}
if(ch_code == 0x0627) {
return 0xFEFB; // (lam-alef) alef
}
return 0;
}