Searchbar: Don't show error on empty string

This commit is contained in:
TingPing 2013-09-16 21:48:04 -04:00
parent 1a67e245ac
commit b67953c70c
1 changed files with 13 additions and 6 deletions

View File

@ -2868,6 +2868,12 @@ search_handle_event(int search_type, session *sess)
g_error_free (err); g_error_free (err);
} }
else if (!last) else if (!last)
{
if (text && text[0] == 0) /* empty string, no error */
{
gtk_entry_set_icon_from_stock (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, NULL);
}
else
{ {
/* Either end of search or not found, try again to wrap if only end */ /* Either end of search or not found, try again to wrap if only end */
last = gtk_xtext_search (GTK_XTEXT (sess->gui->xtext), text, flags, &err); last = gtk_xtext_search (GTK_XTEXT (sess->gui->xtext), text, flags, &err);
@ -2877,6 +2883,7 @@ search_handle_event(int search_type, session *sess)
gtk_entry_set_icon_tooltip_text (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, _("No results found.")); gtk_entry_set_icon_tooltip_text (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, _("No results found."));
} }
} }
}
else else
{ {
gtk_entry_set_icon_from_stock (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, NULL); gtk_entry_set_icon_from_stock (GTK_ENTRY (sess->gui->shentry), GTK_ENTRY_ICON_SECONDARY, NULL);