mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 21:54:55 -04:00
Use main window master timer for SSB demod spectrum and Channel Analyzer spectrum and scope
This commit is contained in:
@@ -1435,3 +1435,11 @@ void GLScope::setTriggerPre(Real triggerPre)
|
||||
{
|
||||
m_triggerPre = triggerPre;
|
||||
}
|
||||
|
||||
void GLScope::connectTimer(const QTimer& timer)
|
||||
{
|
||||
std::cerr << "GLScope::connectTimer" << std::endl;
|
||||
disconnect(&m_timer, SIGNAL(timeout()), this, SLOT(tick()));
|
||||
connect(&timer, SIGNAL(timeout()), this, SLOT(tick()));
|
||||
m_timer.stop();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user