Skip to content

Commit

Permalink
fixes #96928
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed May 11, 2020
1 parent f5bf414 commit 2c7e7c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/browser/ui/splitview/splitview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ export class SplitView<TLayoutContext = undefined> extends Disposable {
position += this.viewItems[i].size;

if (this.sashItems[i].sash === sash) {
return Math.min(position, this.contentSize - 2);
return position;
}
}

Expand Down

0 comments on commit 2c7e7c5

Please sign in to comment.