From 69d375e1d238af43a9d2be06d01ce5e3355a24e2 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 9 Jul 2021 13:37:59 -0400 Subject: [PATCH] Turn off the blue background on Decode button between Early and Final decode passes. --- map65/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/map65/mainwindow.cpp b/map65/mainwindow.cpp index c54829b03..0daccecee 100644 --- a/map65/mainwindow.cpp +++ b/map65/mainwindow.cpp @@ -1391,11 +1391,11 @@ void MainWindow::readFromStdout() //readFromStdout QFile lockFile(m_appDir + "/.lock"); lockFile.open(QIODevice::ReadWrite); if(t.indexOf("") >= 0) { - ui->DecodeButton->setStyleSheet(""); - decodeBusy(false); m_map65RxLog=0; m_startAnother=m_loopall; } + ui->DecodeButton->setStyleSheet(""); + decodeBusy(false); return; }