From 6658bbbbd491c6d91175d699bc07fcbaa687ce48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Wed, 19 Nov 2025 13:07:10 +0100 Subject: [PATCH] fix: set minimum and default track height to 360px MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update DEFAULT_TRACK_HEIGHT from 340px to 360px - Update MIN_TRACK_HEIGHT from 240px to 360px - Ensures all tracks have consistent 360px minimum height - Applies to both control column and waveform column 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- types/track.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/track.ts b/types/track.ts index d2460d8..3e1f8c7 100644 --- a/types/track.ts +++ b/types/track.ts @@ -69,7 +69,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 MIN_TRACK_HEIGHT = 240; // Minimum to fit knob + fader with labels + all buttons +export const DEFAULT_TRACK_HEIGHT = 360; // Knob + fader with labels + R/S/M/A/E buttons +export const MIN_TRACK_HEIGHT = 360; // 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