From 5b43050a3a71302fae50ebd740e12694e0d38478 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Mon, 11 Nov 2019 10:07:40 -0500 Subject: [PATCH] Update status bar when decoding --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 5e0b519..49ec833 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5015,7 +5015,7 @@ void MainWindow::decodeBusy(bool b) //decodeBusy() { if (!b) m_optimizingProgress.reset (); m_decoderBusy=b; - tx_status_label.setText (m_decoderBusy ? "Decoding" : "Receiving"); + tx_status_label.setText (m_decoderBusy ? "Decoding" : m_monitoring ? "Receiving" : ""); ui->DecodeButton->setEnabled(!b); ui->actionOpen->setEnabled(!b); ui->actionOpen_next_in_directory->setEnabled(!b);