aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/bookmarks/ephy-bookmark-action.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c
index 90af3b1fd..241b3785d 100644
--- a/src/bookmarks/ephy-bookmark-action.c
+++ b/src/bookmarks/ephy-bookmark-action.c
@@ -415,7 +415,11 @@ entry_key_press_cb (GtkEntry *entry,
event->keyval == GDK_ISO_Enter) &&
state == GDK_CONTROL_MASK)
{
+#if GTK_CHECK_VERSION (2,21,0)
+ gtk_entry_reset_im_context (entry);
+#else
gtk_im_context_reset (entry->im_context);
+#endif
g_signal_emit_by_name (entry, "activate");