Explorar el Código

Sets `isLineTrackerSuspended` correctly in Graph mode

main
Eric Amodio hace 1 año
padre
commit
6eb9805f77
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/webviews/commitDetails/commitDetailsWebview.ts

+ 1
- 1
src/webviews/commitDetails/commitDetailsWebview.ts Ver fichero

@ -294,7 +294,7 @@ export class CommitDetailsWebviewProvider implements WebviewProvider
}
private get isLineTrackerSuspended() {
return this._lineTrackerDisposable == null;
return this.options.mode !== 'graph' ? this._lineTrackerDisposable == null : false;
}
private suspendLineTracker() {

Cargando…
Cancelar
Guardar