Browse Source

fix(app): disable terminal transparency

Adam 2 weeks ago
parent
commit
80220cebe4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/app/src/components/terminal.tsx

+ 1 - 1
packages/app/src/components/terminal.tsx

@@ -190,7 +190,7 @@ export const Terminal = (props: TerminalProps) => {
         cursorStyle: "bar",
         cursorStyle: "bar",
         fontSize: 14,
         fontSize: 14,
         fontFamily: monoFontFamily(settings.appearance.font()),
         fontFamily: monoFontFamily(settings.appearance.font()),
-        allowTransparency: true,
+        allowTransparency: false,
         convertEol: true,
         convertEol: true,
         theme: terminalColors(),
         theme: terminalColors(),
         scrollback: 10_000,
         scrollback: 10_000,