Fixed Bug 554192 – deadkey-only compose sequences now working
svn path=/branches/gtk-2-14/; revision=21614
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
2008-10-09 Simos Xenitellis <simos@gnome.org>
|
||||
|
||||
Bug 554192 – double press on the "circumflex" dead key
|
||||
(standard french 105 keyboard) no longer produces the "^" character
|
||||
|
||||
* gtk/gtkimcontextsimple.c (gtk_im_context_simple_filter_keypress):
|
||||
Changed the order, put check_compact_table() first, then
|
||||
check_algorithmically().
|
||||
|
||||
2008-10-08 Christian Persch <chpe@gnome.org>
|
||||
|
||||
Bug 554702 – gtkfilesystem leaks GError
|
||||
|
||||
@@ -933,12 +933,12 @@ gtk_im_context_simple_filter_keypress (GtkIMContext *context,
|
||||
return TRUE;
|
||||
tmp_list = tmp_list->next;
|
||||
}
|
||||
|
||||
if (check_algorithmically (context_simple, n_compose))
|
||||
return TRUE;
|
||||
|
||||
if (check_compact_table (context_simple, >k_compose_table_compact, n_compose))
|
||||
return TRUE;
|
||||
|
||||
if (check_algorithmically (context_simple, n_compose))
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* The current compose_buffer doesn't match anything */
|
||||
|
||||
Reference in New Issue
Block a user