From c91ccecc1f65938e2bf9cd733ee61419cb60e4ad Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 26 Feb 2023 09:18:11 +0100 Subject: [PATCH] lint --- tabby-terminal/src/frontends/xtermFrontend.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-terminal/src/frontends/xtermFrontend.ts b/tabby-terminal/src/frontends/xtermFrontend.ts index 54fd6e87..9668555c 100644 --- a/tabby-terminal/src/frontends/xtermFrontend.ts +++ b/tabby-terminal/src/frontends/xtermFrontend.ts @@ -365,7 +365,7 @@ export class XTermFrontend extends Frontend { foreground: scheme!.foreground, selectionBackground: scheme!.selection ?? '#88888888', selectionForeground: scheme!.selectionForeground ?? undefined, - background: (!this.themes.findCurrentTheme().followsColorScheme && config.terminal.background === 'colorScheme') ? scheme!.background : '#00000000', + background: !this.themes.findCurrentTheme().followsColorScheme && config.terminal.background === 'colorScheme' ? scheme!.background : '#00000000', cursor: scheme!.cursor, cursorAccent: scheme!.cursorAccent, }