Mercurial > hg > svgui
diff view/Overview.cpp @ 1554:a0b2f3b4dd2f spectrogram-export
Start work on spectrogram export code
author | Chris Cannam |
---|---|
date | Mon, 06 Jan 2020 14:46:25 +0000 |
parents | e540aa5d89cd |
children | a6e37c28d762 |
line wrap: on
line diff
--- a/view/Overview.cpp Fri Nov 22 14:12:50 2019 +0000 +++ b/view/Overview.cpp Mon Jan 06 14:46:25 2020 +0000 @@ -34,7 +34,7 @@ m_followPan = false; m_followZoom = false; setPlaybackFollow(PlaybackIgnore); - m_modelTestTime.start(); + m_modelTestTimer.start(); bool light = hasLightBackground(); if (light) m_boxColour = Qt::darkGray; @@ -57,7 +57,7 @@ } if (!zoomChanged) { - if (m_modelTestTime.elapsed() < 1000) { + if (m_modelTestTimer.elapsed() < 1000) { for (LayerList::const_iterator i = m_layerStack.begin(); i != m_layerStack.end(); ++i) { auto model = ModelById::get((*i)->getModel()); @@ -66,7 +66,7 @@ } } } else { - m_modelTestTime.restart(); + m_modelTestTimer.restart(); } }