GNOME Bugzilla – Bug 668052
Implement case-insensitive instant search by process name
Last modified: 2012-01-17 01:18:10 UTC
Forwarded from https://bugs.launchpad.net/ubuntu/+source/gnome-system-monitor/+bug/915973 I would consider the issue as a "cosmetic bug". Steps: 0. Run Tasque application 1. Open gnome-system-monitor 2. Switch to Processes tab 3. Do an instant search via typing letter keys: "tasq"... What is expected: It should be able to find Tasque as well as any other process with capital letter(s) in the name. What is faced: Cannot find the Tasque process as its name starts from the capital "T" and the search is case-sensitive. The reason why it makes sense to fix: The user does not have to know the proper case of process name. On the other hand, the processes list sorting by name is case-insensitive - and it's well. Thanks!
Created attachment 205422 [details] [review] Proposed patch The attached patch changes the instant search function of the process table by replacing the strstr function calls with strcasestr for case insensitive matching.
Thanks. Committed to master.