From a95130c01f80263e32f3c85c58cda471a1e6af7d Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 23 Nov 2025 19:10:22 +0100 Subject: [PATCH] Update terminal-panel.tsx --- AppImage/components/terminal-panel.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/AppImage/components/terminal-panel.tsx b/AppImage/components/terminal-panel.tsx index a2c5ac0..d117ffe 100644 --- a/AppImage/components/terminal-panel.tsx +++ b/AppImage/components/terminal-panel.tsx @@ -360,13 +360,16 @@ export const TerminalPanel: React.FC = ({ websocketUrl, onCl ]).then(([Terminal, FitAddon]) => [Terminal, FitAddon]) const term = new TerminalClass({ - fontFamily: '"DejaVu Sans Mono", "Liberation Mono", "Menlo", "Monaco", "Consolas", "Courier", "Courier New", monospace', - - fontSize: isMobile ? 11 : 13, + rendererType: isMobile ? "dom" : "canvas", + + fontFamily: '"Courier New", Courier, monospace', + fontSize: isMobile ? 13 : 14, + lineHeight: 1, cursorBlink: true, scrollback: 2000, disableStdin: false, - customGlyphs: true, + customGlyphs: false, + theme: { background: "#000000", foreground: "#ffffff",