diff options
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index 2e774d1f4..3cf8294a2 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -692,7 +692,7 @@ ephy_node_view_select_node_by_key (EphyNodeView *view, GdkEventKey *event) string = g_utf8_casefold (g_value_get_string (&value), -1); g_utf8_strncpy (string, string, 1); - found = (g_utf8_collate (string, event_string) >= 0); + found = (g_utf8_collate (string, event_string) == 0); g_free (string); g_value_unset (&value); |