Skip to content

Commit 877e0ae

Browse files
committed
fix: keep 500ms as default hover timeout
1 parent 8da8946 commit 877e0ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/adapter/threads.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ export class Thread implements IVariableStoreLocationProvider {
500500
private getHoverEvalTimeout() {
501501
const configuredTimeout = this.launchConfig.timeouts?.hoverEvaluation;
502502
if (configuredTimeout === undefined) {
503-
return 10 * 1000;
503+
return 500;
504504
}
505505
if (configuredTimeout <= 0) {
506506
return undefined;

0 commit comments

Comments
 (0)