From 19e942821821799d600eb6e181e422306620cfa8 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Fri, 19 Jul 2019 23:08:33 -0400 Subject: [PATCH] Fixed bug in prepareSpots being called too frequently --- mainwindow.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 11d5a0a..038f880 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1667,9 +1667,9 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, gridButtonLayout->setColumnStretch(1, 1); gridButtonLayout->setColumnStretch(2, 1); - spotSetLocal(); - pskSetLocal(); - aprsSetLocal(); + + // Prepare spotting configuration... + prepareSpotting(); displayActivity(true); @@ -11271,9 +11271,6 @@ void MainWindow::processSpots() { // Get the dial frequency to report auto dial = dialFrequency(); - // Process spots to be sent... - prepareSpotting(); - while(!m_rxCallQueue.isEmpty()){ CallDetail d = m_rxCallQueue.dequeue(); if(d.call.isEmpty()){