Skip to content

Commit 334c4eb

Browse files
committed
1 parent 3196eb9 commit 334c4eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/contrib/zoneWidget/browser/zoneWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ export abstract class ZoneWidget implements IHorizontalSashLayoutProvider {
431431
const model = this.editor.getModel();
432432
if (model) {
433433
const range = model.validateRange(new Range(where.startLineNumber, 1, where.endLineNumber + 1, 1));
434-
this.revealRange(range, range.endLineNumber === model.getLineCount());
434+
this.revealRange(range, range.startLineNumber === model.getLineCount());
435435
}
436436
}
437437

0 commit comments

Comments
 (0)