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 c963186 commit 896a06dCopy full SHA for 896a06d
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