Fix for "50065 chinese locales Input method hangs after a task entry and

* Fix for "50065 chinese locales Input method hangs after a task entry
        and new folder creation"

        * gal/e-table/e-cell-text.c: (ect_event) Added check to return
        if preedit_length == 0 and E_CELL_PREEDIT flag is set.

svn path=/trunk/; revision=23093
This commit is contained in:
Suresh Chandrasekharan
2003-10-27 22:21:18 +00:00
parent e2881f6524
commit aa7103dfa1

View File

@ -885,6 +885,9 @@ ect_event (ECellView *ecell_view, GdkEvent *event, int model_col, int view_col,
if (!(flags & E_CELL_EDITING))
return 0;
if ( edit && !edit->preedit_length && flags & E_CELL_PREEDIT)
return TRUE;
if (edit && edit->view_col == view_col && edit->row == row) {
edit_display = TRUE;