Browse Source

Sets `isLineTrackerSuspended` correctly in Graph mode

main
Eric Amodio 1 year ago
parent
commit
6eb9805f77
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/webviews/commitDetails/commitDetailsWebview.ts

+ 1
- 1
src/webviews/commitDetails/commitDetailsWebview.ts View File

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

Loading…
Cancel
Save