Skip to content

Commit d56d7d6

Browse files
committed
refactor(vscode): set delay of reactivity visualization updates to 250ms
1 parent 077f9e4 commit d56d7d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/vscode/lib/reactivityVisualization.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function activate(
4242
const editor = vscode.window.activeTextEditor;
4343
if (editor) {
4444
clearTimeout(timeout);
45-
timeout = setTimeout(() => updateDecorations(editor), 100);
45+
timeout = setTimeout(() => updateDecorations(editor), 250);
4646
}
4747
}),
4848
);

0 commit comments

Comments
 (0)