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 fbbcc48 commit c86bcb5Copy full SHA for c86bcb5
src/vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay.ts
@@ -102,7 +102,6 @@ export class TerminalStickyScrollOverlay extends Disposable {
102
this._stickyScrollOverlay = this._register(new ctor({
103
rows: 1,
104
cols: this._xterm.raw.cols,
105
- allowTransparency: true,
106
allowProposedApi: true,
107
...this._getOptions()
108
}));
@@ -447,6 +446,7 @@ export class TerminalStickyScrollOverlay extends Disposable {
447
446
private _getOptions(): ITerminalOptions {
448
const o = this._xterm.raw.options;
449
return {
+ allowTransparency: true,
450
cursorInactiveStyle: 'none',
451
scrollback: 0,
452
logLevel: 'off',
0 commit comments