Mercurial > hg > svgui
diff layer/WaveformLayer.cpp @ 607:5b72899d692b
Give a dedicated key to toggling the centre line, and move it out of the overlay level setting -- reducing number of overlay levels to 3. Introduce two distinct vertical scale types (so that we can hide the spectrogram colour scale part easily)
author | Chris Cannam |
---|---|
date | Mon, 30 Jan 2012 16:01:59 +0000 |
parents | 4806715f7a19 |
children | ea786e8bd931 |
line wrap: on
line diff
--- a/layer/WaveformLayer.cpp Mon Jan 30 13:24:55 2012 +0000 +++ b/layer/WaveformLayer.cpp Mon Jan 30 16:01:59 2012 +0000 @@ -1154,7 +1154,7 @@ } int -WaveformLayer::getVerticalScaleWidth(View *, QPainter &paint) const +WaveformLayer::getVerticalScaleWidth(View *, bool, QPainter &paint) const { if (m_scale == LinearScale) { return paint.fontMetrics().width("0.0") + 13; @@ -1165,7 +1165,7 @@ } void -WaveformLayer::paintVerticalScale(View *v, QPainter &paint, QRect rect) const +WaveformLayer::paintVerticalScale(View *v, bool, QPainter &paint, QRect rect) const { if (!m_model || !m_model->isOK()) { return;