Skip to content

Commit c86bcb5

Browse files
committed
Move option into shared call
1 parent fbbcc48 commit c86bcb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminalContrib/stickyScroll/browser/terminalStickyScrollOverlay.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ export class TerminalStickyScrollOverlay extends Disposable {
102102
this._stickyScrollOverlay = this._register(new ctor({
103103
rows: 1,
104104
cols: this._xterm.raw.cols,
105-
allowTransparency: true,
106105
allowProposedApi: true,
107106
...this._getOptions()
108107
}));
@@ -447,6 +446,7 @@ export class TerminalStickyScrollOverlay extends Disposable {
447446
private _getOptions(): ITerminalOptions {
448447
const o = this._xterm.raw.options;
449448
return {
449+
allowTransparency: true,
450450
cursorInactiveStyle: 'none',
451451
scrollback: 0,
452452
logLevel: 'off',

0 commit comments

Comments
 (0)