Skip to content

Commit

Permalink
fixed dual matra problem
Browse files Browse the repository at this point in the history
  • Loading branch information
pravins committed Jun 16, 2009
1 parent c697699 commit 83119a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ static gboolean ibus_sinhala_handle_vowel_pressed(IBusSinhalaEngine *sinhala,
}
else {
/* look for a previous character first. */
c1 = g_array_index(sinhala->buffer, gunichar,0);
c1 = g_array_index(sinhala->buffer, gunichar,(sinhala->buffer->len-1));

if (ibus_sinhala_is_consonent(c1)) {
g_array_append_val(sinhala->buffer, vowels[c].single1);
Expand Down

0 comments on commit 83119a0

Please sign in to comment.