From 65648a8cc5b5a6efa8846af844c56b7bf9b58dcd Mon Sep 17 00:00:00 2001 From: Anthony Donlon Date: Sat, 22 Nov 2025 00:44:23 +0800 Subject: [PATCH] editor/ui: increase input 'debounce' time --- editor/resources/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/resources/index.html b/editor/resources/index.html index f7c0940..dfe2e0a 100644 --- a/editor/resources/index.html +++ b/editor/resources/index.html @@ -380,7 +380,7 @@ inp.addEventListener('input', debounce(() => { // Update status block color classes for quick visual feedback in the editor render(); - }, 250)); + }, 1500)); // for radio change events (error_source) if (inp.type === 'radio') inp.addEventListener('change', () => { render(); }); });