From 12ace95042216f4971f492c846ecd79cfb54d6fa Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 26 Jul 2025 10:09:36 +0300 Subject: [PATCH] disable search feature for the proxy dialog --- src/app/browser/proxy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/browser/proxy.rs b/src/app/browser/proxy.rs index ea27520d..f3db3dc7 100644 --- a/src/app/browser/proxy.rs +++ b/src/app/browser/proxy.rs @@ -28,7 +28,7 @@ impl Proxy for adw::PreferencesDialog { // Init widget let d = adw::PreferencesDialog::builder() .follows_content_size(true) - .search_enabled(true) + .search_enabled(false) .title("Proxy") .build();