diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2007-08-01 18:33:53 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-08-01 18:33:53 +0000 |
commit | abab095b9d4ba1a0e41f100eb31840c86bf52b8a (patch) | |
tree | f30c1644c4fbf4d6e95554d918dda49f96aec2ff /modules | |
parent | 8d847e291164b6b34a3958e9e282779549a6b134 (diff) | |
download | pango-abab095b9d4ba1a0e41f100eb31840c86bf52b8a.tar.gz |
Bug 451682 – Cursor positioning for Sinhala is broken Based on patch
2007-08-01 Behdad Esfahbod <behdad@gnome.org>
Bug 451682 – Cursor positioning for Sinhala is broken
Based on patch from Harshula
* modules/indic/indic-lang.c (indic_engine_break): Fix bug that
I introduced in the patch.
svn path=/trunk/; revision=2388
Diffstat (limited to 'modules')
-rw-r--r-- | modules/indic/indic-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/indic/indic-lang.c b/modules/indic/indic-lang.c index c0d07ed2..a0c163ba 100644 --- a/modules/indic/indic-lang.c +++ b/modules/indic/indic-lang.c @@ -159,7 +159,7 @@ indic_engine_break (PangoEngineLang *engine, */ else if (!is_conjunct && prev_wc == 0x0DCA && this_wc != 0x200D) { - not_cursor_position(&attrs[i]); + attrs[i].is_cursor_position = TRUE; } break; |