GNOME Bugzilla – Bug 626334
When searching, message "0 found in this page" is misleading
Last modified: 2010-08-14 09:01:37 UTC
Due to the fact that the search in Evince is "search as you type", the message "0 found in this page" only appears when there are no search results (in any page) the "in this page" may mislead the user to think there are results in other pages, when they are not. I propose that we change the message to "no hits found" or something like this.
Created attachment 167347 [details] [review] Proposed patch patch adding "phrase not found" string when there are no results.
Review of attachment 167347 [details] [review]: ::: shell/ev-window.c @@ +4867,3 @@ contains plural cases. */ + if (n_results == 0) { + /* if n_results == 0, then there are no results in any page. */ This assumption is wrong, ev_job_find_get_n_results() returns the number of results in the given page, so there might be results in other pages. I agree that when find job finishes and there aren't results in any page the message "0 found on this page" is confusing, it could be just "Not found"
I've just pushed a different patch to git master. Thanks!