Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creating overlay widget #7

Merged
merged 10 commits into from
Oct 10, 2024
Prev Previous commit
Next Next commit
fix filtering the query as lowercase
LegitCamper committed Oct 9, 2024
commit 54de3c7a0233abf47a892d3a6e05d45009de50e1
5 changes: 4 additions & 1 deletion src/widgets/mod.rs
Original file line number Diff line number Diff line change
@@ -328,7 +328,10 @@ impl<Engine: BrowserEngine> IcyBrowser<Engine> {
.to_string()
.to_lowercase()
.contains(&query.to_lowercase())
|| command.inner_name().contains(&query.to_lowercase())
|| command
.inner_name()
.to_lowercase()
.contains(&query.to_lowercase())
})
.collect();
Task::none()