mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-05 02:48:37 -04:00
Don't increment watchdog timer in WSPR modes
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6897 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
d1adc4793e
commit
aa88b067fb
@ -869,13 +869,15 @@ void MainWindow::on_the_minute ()
|
||||
}
|
||||
}
|
||||
|
||||
if (m_repeatMsg < m_config.watchdog ()) ++m_repeatMsg;
|
||||
if (!m_mode.startsWith ("WSPR") && m_config.watchdog () != 0)
|
||||
if (!m_mode.startsWith ("WSPR") && m_config.watchdog () != 0
|
||||
&& m_repeatMsg < m_config.watchdog ())
|
||||
{
|
||||
++m_repeatMsg;
|
||||
updateProgressBarFormat (true);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_repeatMsg = 0;
|
||||
updateProgressBarFormat (false);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user