mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
Bug 568624: Make overlay search case insensitive
svn path=/trunk/; revision=161
This commit is contained in:
parent
90bce45ec6
commit
ce36eafc2f
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ Sideshow.prototype = {
|
|||
if (me._searchQueued)
|
||||
return;
|
||||
Mainloop.timeout_add(250, function() {
|
||||
let text = me._searchEntry.text;
|
||||
let text = me._searchEntry.text.replace(/\s/g, "");
|
||||
me._searchQueued = false;
|
||||
me._searchActive = text != '';
|
||||
me._appDisplay.setSearch(text);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue