diff --git a/components/tracks/Track.tsx b/components/tracks/Track.tsx index 1ad77e3..4cf30d0 100644 --- a/components/tracks/Track.tsx +++ b/components/tracks/Track.tsx @@ -547,21 +547,31 @@ export function Track({ - {/* Input Level Meter (shown when recording or record-enabled) */} - {(track.recordEnabled || isRecording) && ( -
- -
- -
- - {Math.round(recordingLevel * 100)}% - + {/* Level Meter (shows input when recording, output level otherwise) */} +
+ +
+
- )} + + {Math.round((track.recordEnabled || isRecording ? recordingLevel : 0) * 100)}% + +
)}
diff --git a/types/track.ts b/types/track.ts index 64a5cd2..a5ad9e4 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 = 150; +export const DEFAULT_TRACK_HEIGHT = 180; export const MIN_TRACK_HEIGHT = 60; export const MAX_TRACK_HEIGHT = 300;