diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2004-03-18 Xan Lopez <xan@gnome.org> + + * lib/widgets/ephy-node-view.c: + (ephy_node_view_select_node_by_key): + + Make select-by-key support unsorted lists. Fuzzy matching is gone + though. Oh well ... :) (bug #137054) + 2004-03-18 Piers Cornwell <piers@gnome.org> * src/pdm-dialog.c: (show_cookies_properties): 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); |