Turn off the blue background on Decode button between Early and Final decode passes.

This commit is contained in:
Joe Taylor 2021-07-09 13:37:59 -04:00
parent 1d3025329b
commit 69d375e1d2
1 changed files with 2 additions and 2 deletions

View File

@ -1391,11 +1391,11 @@ void MainWindow::readFromStdout() //readFromStdout
QFile lockFile(m_appDir + "/.lock"); QFile lockFile(m_appDir + "/.lock");
lockFile.open(QIODevice::ReadWrite); lockFile.open(QIODevice::ReadWrite);
if(t.indexOf("<DecodeFinished>") >= 0) { if(t.indexOf("<DecodeFinished>") >= 0) {
ui->DecodeButton->setStyleSheet("");
decodeBusy(false);
m_map65RxLog=0; m_map65RxLog=0;
m_startAnother=m_loopall; m_startAnother=m_loopall;
} }
ui->DecodeButton->setStyleSheet("");
decodeBusy(false);
return; return;
} }