From 79a7c8f5cbb98375c42fd715e1f0e297b9791886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Aug 2026 21:14:11 +0200 Subject: [PATCH] Tighten xterm terminal line height 1.4 was too loose for a log/terminal view; 1.2 stays readable while fitting more output on screen. Co-Authored-By: Claude Sonnet 5 --- app/src/components/runs/xterm-view.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/runs/xterm-view.tsx b/app/src/components/runs/xterm-view.tsx index d68268b..83d5591 100644 --- a/app/src/components/runs/xterm-view.tsx +++ b/app/src/components/runs/xterm-view.tsx @@ -60,7 +60,7 @@ export const XtermView = forwardRef( disableStdin: true, cursorBlink: false, fontSize: 12, - lineHeight: 1.4, + lineHeight: 1.2, fontFamily: "ui-monospace, Menlo, monospace", theme, });