From 36508bb3a368b79254da9b50bc06bd0a7ff31145 Mon Sep 17 00:00:00 2001 From: Heyward Fann Date: Fri, 10 Nov 2023 11:22:05 +0800 Subject: [PATCH] fix(handler): increase inlayHint render debounce same as content change debounce related #4782 --- src/handler/inlayHint/buffer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handler/inlayHint/buffer.ts b/src/handler/inlayHint/buffer.ts index 1dccba3ad40..320999f15fd 100644 --- a/src/handler/inlayHint/buffer.ts +++ b/src/handler/inlayHint/buffer.ts @@ -23,7 +23,7 @@ export interface InlayHintConfig { } let srcId: number | undefined -const debounceInterval = getConditionValue(100, 10) +const debounceInterval = getConditionValue(150, 10) const requestDelay = getConditionValue(500, 10) // Extend the rendering range for better experience when scrolling