This commit is contained in:
Daniel Imms
2025-12-10 07:59:52 -08:00
parent 9ea059de6f
commit bd361af105
+2 -2
View File
@@ -19,7 +19,7 @@ interface ISelectionState {
}
const enum Constants {
SynchronizedOutputTimeoutMs = 1000
SYNCHRONIZED_OUTPUT_TIMEOUT_MS = 1000
}
export class RenderService extends Disposable implements IRenderService {
@@ -348,7 +348,7 @@ class SynchronizedOutputHandler {
this._timeout = undefined;
this._coreService.decPrivateModes.synchronizedOutput = false;
this._onTimeout();
}, Constants.SynchronizedOutputTimeoutMs);
}, Constants.SYNCHRONIZED_OUTPUT_TIMEOUT_MS);
}
}