1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-09 01:14:58 -04:00

Use main window master timer for SSB demod spectrum and Channel Analyzer spectrum and scope

This commit is contained in:
f4exb
2015-08-01 04:07:09 +02:00
parent e6caa94593
commit 07f16bb176
6 changed files with 20 additions and 0 deletions
+2
View File
@@ -1546,6 +1546,8 @@ void GLSpectrum::setWaterfallShare(Real waterfallShare)
void GLSpectrum::connectTimer(const QTimer& timer)
{
std::cerr << "GLSpectrum::connectTimer" << std::endl;
disconnect(&m_timer, SIGNAL(timeout()), this, SLOT(tick()));
connect(&timer, SIGNAL(timeout()), this, SLOT(tick()));
m_timer.stop();
}