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:
@ -886,6 +886,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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user