From c1b1daf9db0481be17dacb444b6f8733aec89948 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 20 Dec 2018 12:42:39 -0500 Subject: [PATCH] Allow the logQSO dialog to modify "Rcvd" in NA VHF mode and have the changes flow through to N1MM. --- widgets/logqso.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/widgets/logqso.cpp b/widgets/logqso.cpp index bfea97620..2c75faf5c 100644 --- a/widgets/logqso.cpp +++ b/widgets/logqso.cpp @@ -138,6 +138,10 @@ void LogQSO::accept() using SpOp = Configuration::SpecialOperatingActivity; auto special_op = m_config->special_op_id (); + if (special_op == SpOp::NA_VHF) { + if(xrcvd!="" and hisGrid!=xrcvd) hisGrid=xrcvd; + } + if (special_op == SpOp::RTTY) { if(rptSent=="" or !xsent.contains(rptSent+" ")) rptSent=xsent.split(" ",QString::SkipEmptyParts).at(0); if(rptRcvd=="" or !xrcvd.contains(rptRcvd+" ")) rptRcvd=xrcvd.split(" ",QString::SkipEmptyParts).at(0);