Skip to content

Commit

Permalink
padding between statusbar and inline edit (microsoft#237632)
Browse files Browse the repository at this point in the history
  • Loading branch information
benibenj authored Jan 10, 2025
1 parent 7faf268 commit 3073dc1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ export class InlineEditsGutterIndicator extends Disposable {

const layout = this._editorObs.layoutInfo.read(reader);

const fullViewPort = Rect.fromLeftTopRightBottom(0, 0, layout.width, layout.height);
const bottomPadding = 1;
const fullViewPort = Rect.fromLeftTopRightBottom(0, 0, layout.width, layout.height - bottomPadding);
const viewPortWithStickyScroll = fullViewPort.withTop(this._stickyScrollHeight.read(reader));

const targetVertRange = s.lineOffsetRange.read(reader);
Expand Down

0 comments on commit 3073dc1

Please sign in to comment.