From ececdad22d1bc4ecd4762d1e09b9955652e2f93b Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 2 Mar 2022 01:56:05 +0100 Subject: [PATCH] and increase debounce a bit --- copyparty/web/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copyparty/web/browser.js b/copyparty/web/browser.js index 8d1564c0..9a85ebc0 100644 --- a/copyparty/web/browser.js +++ b/copyparty/web/browser.js @@ -3220,7 +3220,7 @@ document.onkeydown = function (e) { clearTimeout(defer_timeout); clearTimeout(search_timeout); search_timeout = setTimeout(do_search, - v && v.length < (is_touch ? 4 : 3) ? 600 : 200); + v && v.length < (is_touch ? 4 : 3) ? 1000 : 500); } }