aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-10-01 15:38:27 +0800
committerChristian Persch <chpe@src.gnome.org>2005-10-01 15:38:27 +0800
commit292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4 (patch)
tree3525ff182c41d8d2a02ebc41e2c4b79d5538ff80 /src
parent337111c6344cc95028968f138b43fd6065be576d (diff)
downloadgsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.tar
gsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.tar.gz
gsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.tar.bz2
gsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.tar.lz
gsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.tar.xz
gsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.tar.zst
gsoc2013-epiphany-292b22cfc4fb1e6e3a9a7c2b07c88319e94ff1b4.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')
-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;
}