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:
commit
351008edcc
2
Kconfig
2
Kconfig
@ -1,4 +1,4 @@
|
||||
# Kconfig file for LVGL v7.8.1
|
||||
# Kconfig file for LVGL v7.10.1
|
||||
|
||||
menu "LVGL configuration"
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user