From ad5ca070e876ff44c6ae84d3c13824ab34a767ee Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Sun, 19 Jul 2026 17:09:30 +0100 Subject: [PATCH] Fix constant to be 32MHz instead of 320MHz. Fixes #2801 --- plugins/feature/map/mapgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/feature/map/mapgui.cpp b/plugins/feature/map/mapgui.cpp index 388a1d0e2..129bc65bc 100644 --- a/plugins/feature/map/mapgui.cpp +++ b/plugins/feature/map/mapgui.cpp @@ -673,7 +673,7 @@ void MapGUI::kiwiSDRUpdated(const QList& sdrs) QString band = "HF"; if (sdr.m_highFrequency > 300000000) { band = "UHF"; - } else if (sdr.m_highFrequency > 320000000) { // Technically 30MHz, but many HF Kiwis list up to 32MHz + } else if (sdr.m_highFrequency > 32000000) { // Technically 30MHz, but many HF Kiwis list up to 32MHz band = "VHF"; } QString label = QString("Kiwi %1").arg(band);