From ae9ddb7c0e0e2bf59a5916a454717b015cd1db98 Mon Sep 17 00:00:00 2001 From: Heyward Fann Date: Wed, 21 Feb 2024 16:12:56 +0800 Subject: [PATCH] fix(handler): increase inlayHint render debounce (#4805) 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