From 2d3914eb2d1fad582ae592574c551e1476f1e2b7 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 27 Mar 2022 09:35:28 -0400 Subject: [PATCH] Reset displayed score when Cabrillo log is reset. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 89cfb64c2..5b371cb4e 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7167,6 +7167,7 @@ void MainWindow::on_reset_cabrillo_log_action_triggered () m_logBook.contest_log ()->reset (); m_activeCall.clear(); //Erase the QMap of active calls m_score=0; + m_ActiveStationsWidget->setScore(0); } }