# HG changeset patch # User Chris Cannam # Date 1490888808 -3600 # Node ID f3ff5ee994a1a9d94c4407b8286beee2ccc86193 # Parent 4f0e5032a2406dafa3752fa6af7ea8f8eef404cf With card layout, these can be full-height again diff -r 4f0e5032a240 -r f3ff5ee994a1 src/app/waveform/waveform.component.ts --- a/src/app/waveform/waveform.component.ts Thu Mar 30 16:31:45 2017 +0100 +++ b/src/app/waveform/waveform.component.ts Thu Mar 30 16:46:48 2017 +0100 @@ -540,8 +540,8 @@ const gridTrack = this.timeline.getTrackById(`grid-${this.trackIdPrefix}`); const spectrogramLayer = new WavesSpectrogramLayer(buffer, { - top: height * 0.05, - height: height * 0.9, + top: 0, + height: height, stepSize: 512, blockSize: 1024, normalise: 'none', @@ -717,8 +717,8 @@ stepDuration); let matrixLayer = new wavesUI.helpers.MatrixLayer(matrixEntity, { gain, - height: height * 0.9, - top: height * 0.05, + top: 0, + height: height, normalise: 'none', mapper: this.iceMapper() });