From 5e8deecdb4709e45d360a9724f163ee38b5a28cf Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 12 Dec 2023 15:43:29 -0500 Subject: [PATCH] Fix the logic about not scrolling the QMAP waterfall when transmitting. --- qmap/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmap/mainwindow.cpp b/qmap/mainwindow.cpp index ac99c5e7d..fd61dd2d7 100644 --- a/qmap/mainwindow.cpp +++ b/qmap/mainwindow.cpp @@ -372,7 +372,7 @@ void MainWindow::dataSink(int k) xSignalMeter->setValue(px); // Update the signal meters //Suppress scrolling if WSJT-X is transmitting - if((m_monitoring and (ipc_wsjtx[4] != 1 or ui->continuous_waterfall->isChecked())) or m_diskData) { + if((m_monitoring and (ipc_wsjtx[4] == 0 or ui->continuous_waterfall->isChecked())) or m_diskData) { m_wide_graph_window->dataSink2(s,nkhz,ihsym,m_diskData,lstrong); }