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.
2 parents c963186 + 896a06d commit fffda8eCopy full SHA for fffda8e
src/vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay.ts
@@ -258,7 +258,7 @@ export class TerminalStickyScrollOverlay extends Disposable {
258
const stickyScrollLineCount = Math.min(promptRowCount + commandRowCount - 1, maxLineCount) - rowOffset;
259
260
// Hide sticky scroll if it's currently on a line that contains it
261
- if (buffer.viewportY === stickyScrollLineStart) {
+ if (buffer.viewportY <= stickyScrollLineStart) {
262
this._setVisible(false);
263
return;
264
}
0 commit comments