From 8a65154201e36dba60c53bc95f340c89aa3d000c Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sat, 1 Oct 2005 07:38:05 +0000 Subject: Reset the IM context before activating the entry. 2005-10-01 Christian Persch * lib/widgets/ephy-location-entry.c: (entry_key_press_cb): Reset the IM context before activating the entry. * lib/widgets/ephy-node-view.c: (ephy_node_view_key_press_cb): * src/ephy-find-toolbar.c: (tab_search_key_press_cb): Add GDK_ISO_Enter to recognised keyvals. --- src/ephy-find-toolbar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ephy-find-toolbar.c') diff --git a/src/ephy-find-toolbar.c b/src/ephy-find-toolbar.c index 15e4978b7..3e9ac57ac 100644 --- a/src/ephy-find-toolbar.c +++ b/src/ephy-find-toolbar.c @@ -200,7 +200,8 @@ tab_search_key_press_cb (EphyEmbed *embed, /* don't do anything if the find toolbar is hidden */ if (GTK_WIDGET_VISIBLE (widget) == FALSE || event->keyval == GDK_Return || - event->keyval == GDK_KP_Enter) + event->keyval == GDK_KP_Enter || + event->keyval == GDK_ISO_Enter) { return FALSE; } -- cgit