diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | modules/indic/indic-lang.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +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. + 2007-07-31 Behdad Esfahbod <behdad@gnome.org> Bug 451682 – Cursor positioning for Sinhala is broken 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; |