This commit is contained in:
Eugene Pankov 2023-02-26 09:18:11 +01:00
parent 42e95f15b4
commit c91ccecc1f
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -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,
}