From 07054bf55aa0fd956ae95558bb1c795f0cd2d147 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 23 Nov 2025 18:51:46 +0100 Subject: [PATCH] Update terminal-panel.tsx --- AppImage/components/terminal-panel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AppImage/components/terminal-panel.tsx b/AppImage/components/terminal-panel.tsx index 20ef4d5..d8742fa 100644 --- a/AppImage/components/terminal-panel.tsx +++ b/AppImage/components/terminal-panel.tsx @@ -360,9 +360,9 @@ 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 New", monospace', - - fontSize: isMobile ? 11 : 13, + fontFamily: 'Consolas, "DejaVu Sans Mono", "Lucida Console", "Liberation Mono", "Courier", "Courier New", monospace', + rendererType: isMobile ? "dom" : "canvas", + fontSize: isMobile ? 13 : 14, cursorBlink: true, scrollback: 2000, disableStdin: false,