From 3cce3f8c05bbbe0fd2f160b8be8e42165b642f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 01:13:05 +0100 Subject: [PATCH] feat: increase default track height from 340px to 360px MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increased DEFAULT_TRACK_HEIGHT to provide more vertical space for track controls and waveform viewing. 🤖 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 a5bc952..c4863fa 100644 --- a/types/track.ts +++ b/types/track.ts @@ -68,7 +68,7 @@ export const TRACK_COLORS: Record = { gray: 'rgb(156, 163, 175)', }; -export const DEFAULT_TRACK_HEIGHT = 340; // Knob + fader with labels + R/S/M/A/E buttons +export const DEFAULT_TRACK_HEIGHT = 360; // Knob + fader with labels + R/S/M/A/E buttons export const MIN_TRACK_HEIGHT = 240; // Minimum to fit knob + fader with labels + all buttons export const MAX_TRACK_HEIGHT = 500; // Increased for better waveform viewing export const COLLAPSED_TRACK_HEIGHT = 48; // Extracted constant for collapsed state