fix: remove wrapper div to show automation lane controls properly

- Remove h-32 wrapper div around AutomationLane
- AutomationLane now uses its own height (lane.height, defaults to 80px)
- Automation controls (canvas, points) now visible and interactive

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-19 12:55:42 +01:00
parent 4c794dd293
commit 1a66669a77

View File

@@ -337,8 +337,8 @@ export function TrackList({
{track.automation.lanes {track.automation.lanes
.filter((lane) => lane.parameterId === (track.automation.selectedParameterId || 'volume') && lane.visible) .filter((lane) => lane.parameterId === (track.automation.selectedParameterId || 'volume') && lane.visible)
.map((lane) => ( .map((lane) => (
<div key={lane.id} className="h-32">
<AutomationLane <AutomationLane
key={lane.id}
lane={lane} lane={lane}
zoom={zoom} zoom={zoom}
currentTime={currentTime} currentTime={currentTime}
@@ -388,7 +388,6 @@ export function TrackList({
}); });
}} }}
/> />
</div>
))} ))}
</div> </div>
)} )}