From a8570f24587f5e1eb5790fe409a12e807d8d7c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 01:14:12 +0100 Subject: [PATCH] feat: increase minimum track height from 240px to 260px MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Raised MIN_TRACK_HEIGHT to ensure proper spacing for all track controls with the new border styling. 🤖 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 c4863fa..6e73b72 100644 --- a/types/track.ts +++ b/types/track.ts @@ -69,6 +69,6 @@ export const TRACK_COLORS: Record = { }; 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 MIN_TRACK_HEIGHT = 260; // 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