aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-find-toolbar.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-10-01 15:38:05 +0800
committerChristian Persch <chpe@src.gnome.org>2005-10-01 15:38:05 +0800
commit8a65154201e36dba60c53bc95f340c89aa3d000c (patch)
tree0315e7b7291a7776fb45dd2d2e44b09269a3b071 /src/ephy-find-toolbar.c
parent3c311e45c8f9191b331ece2daef00dc146871eee (diff)
downloadgsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.tar
gsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.tar.gz
gsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.tar.bz2
gsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.tar.lz
gsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.tar.xz
gsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.tar.zst
gsoc2013-epiphany-8a65154201e36dba60c53bc95f340c89aa3d000c.zip
Reset the IM context before activating the entry.
2005-10-01 Christian Persch <chpe@cvs.gnome.org> * 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.
Diffstat (limited to 'src/ephy-find-toolbar.c')
-rw-r--r--src/ephy-find-toolbar.c3
1 files changed, 2 insertions, 1 deletions
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;
}