We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18136ed commit 2a19176Copy full SHA for 2a19176
src/vs/editor/browser/widget/diffEditorWidget.ts
@@ -1368,7 +1368,7 @@ export class DiffEditorWidget extends Disposable implements editorBrowser.IDiffE
1368
this._originalDomNode.style.width = splitPoint + 'px';
1369
this._originalDomNode.style.left = '0px';
1370
1371
- this._modifiedDomNode.style.width = (width - splitPoint) + 'px';
+ this._modifiedDomNode.style.width = (width - splitPoint - DiffEditorWidget.ENTIRE_DIFF_OVERVIEW_WIDTH) + 'px';
1372
this._modifiedDomNode.style.left = splitPoint + 'px';
1373
1374
this._overviewDomElement.style.top = '0px';
0 commit comments