Explorar el Código

Allows window annotations to always toggle

main
Eric Amodio hace 2 años
padre
commit
3712aa0f22
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/annotations/fileAnnotationController.ts

+ 1
- 1
src/annotations/fileAnnotationController.ts Ver fichero

@ -362,7 +362,7 @@ export class FileAnnotationController implements Disposable {
context?: AnnotationContext | ChangesAnnotationContext,
on?: boolean,
): Promise<boolean> {
if (editor != null) {
if (editor != null && this._toggleModes.get(type) === AnnotationsToggleMode.File) {
const trackedDocument = await this.container.tracker.getOrAdd(editor.document);
if ((type === FileAnnotationType.Changes && !trackedDocument.isTracked) || !trackedDocument.isBlameable) {
return false;

Cargando…
Cancelar
Guardar