diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/ephy-find-toolbar.c | 14 |
2 files changed, 17 insertions, 3 deletions
@@ -1,5 +1,11 @@ 2005-07-09 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-find-toolbar.c: (entry_changed_cb): + + If the string includes uppercase letters, search case-sensitively. + +2005-07-09 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-find-toolbar.c: (ephy_find_toolbar_close): Don't focus the embed on close on !typeaheadfind, diff --git a/src/ephy-find-toolbar.c b/src/ephy-find-toolbar.c index 84ce8ed4d..851041fba 100644 --- a/src/ephy-find-toolbar.c +++ b/src/ephy-find-toolbar.c @@ -249,13 +249,21 @@ entry_changed_cb (GtkEntry *entry, { EphyFindToolbarPrivate *priv = toolbar->priv; const char *text; - gboolean found = TRUE; + char *lowercase; + gboolean found = TRUE, case_sensitive; text = gtk_entry_get_text (GTK_ENTRY (priv->entry)); + + /* Search case-sensitively iff the string includes + * non-lowercase character. + */ + lowercase = g_utf8_strdown (text, -1); + case_sensitive = g_utf8_collate (text, lowercase) != 0; + g_free (lowercase); + + ephy_embed_find_set_properties (get_find (toolbar), text, case_sensitive); #ifdef HAVE_TYPEAHEADFIND found = ephy_embed_find_find (get_find (toolbar), text, priv->links_only); -#else - ephy_embed_find_set_properties (get_find (toolbar), text, FALSE); #endif set_controls (toolbar, found, found); } |