mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-18 21:52:38 -04:00
Merged from trunk:
------------------------------------------------------------------------ r7883 | k1jt | 2017-07-14 20:29:31 +0100 (Fri, 14 Jul 2017) | 1 line Minor code tweak. ------------------------------------------------------------------------ git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8@7916 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
96e6adfa1a
commit
ff0ebdca74
@ -2026,7 +2026,7 @@ void MainWindow::closeEvent(QCloseEvent * e)
|
||||
m_prefixes.reset ();
|
||||
m_shortcuts.reset ();
|
||||
m_mouseCmnds.reset ();
|
||||
if(m_mode!="MSK144") killFile();
|
||||
if(m_mode!="MSK144" and m_mode!="FT8") killFile();
|
||||
mem_jt9->detach();
|
||||
QFile quitFile {m_config.temp_dir ().absoluteFilePath (".quit")};
|
||||
quitFile.open(QIODevice::ReadWrite);
|
||||
@ -2660,7 +2660,8 @@ void MainWindow::readFromStdout() //readFromStdout
|
||||
}
|
||||
*/
|
||||
m_bDecoded = t.mid(20).trimmed().toInt() > 0;
|
||||
if(!m_diskData) killFileTimer.start (3*1000*m_TRperiod/4); //Kill in 45 s
|
||||
int mswait=3*1000*m_TRperiod/4;
|
||||
if(!m_diskData) killFileTimer.start(mswait); //Kill in 3/4 period
|
||||
decodeDone ();
|
||||
m_startAnother=m_loopall;
|
||||
if(m_bNoMoreFiles) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user