[Indic-computing-devel] Re: [Kannada] A few kannada bug fixes to qt-3.2.1
Status: Alpha
Brought to you by:
jkoshy
|
From: Arun S. <ar...@sh...> - 2003-08-31 15:51:03
|
Arun Sharma wrote:
> // * In Kannada and Telugu, the base consonant cannot be
> // farther than 3 consonants from the end of the syllable.
Actually the comment is correct.
>
> is not strictly correct. For cases such as "Lakshmi" - "kshmi" is one
> syllable. Gnome handles this correctly. But I couldn't figure out how to
> change the qt code to fix that.
>
> - if (skipped == 2 && (script == QFont::Kannada || script == QFont::Telugu)) {
> + if (skipped == 4 && (script == QFont::Kannada || script == QFont::Telugu)) {
>
> doesn't do it. Any patches will be highly appreciated.
The problem is not with the above line. It's somewhere else.
-Arun
|