From 2775fdb5170ca370157533c82e05f99dac4587e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 18 Nov 2025 14:47:58 +0100 Subject: [PATCH] fix: increase default track height to accommodate input meter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increased DEFAULT_TRACK_HEIGHT from 120px to 150px to properly fit: - Volume slider - Pan slider - Input level meter (when track is armed or recording) This ensures all controls have adequate vertical spacing and the input meter doesn't get cramped when it appears under the pan control. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- types/track.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/track.ts b/types/track.ts index cd4f3d7..64a5cd2 100644 --- a/types/track.ts +++ b/types/track.ts @@ -59,6 +59,6 @@ export const TRACK_COLORS: Record = { gray: 'rgb(156, 163, 175)', }; -export const DEFAULT_TRACK_HEIGHT = 120; +export const DEFAULT_TRACK_HEIGHT = 150; export const MIN_TRACK_HEIGHT = 60; export const MAX_TRACK_HEIGHT = 300;