From a717ce45657ca9b87f8a8bd4f1fb284d5599d61c Mon Sep 17 00:00:00 2001 From: Elliott Liggett Date: Wed, 19 May 2021 21:51:24 -0700 Subject: [PATCH] Model ID text format fixed. Shows IC-0x followed by the raw rig ID received. --- rigcommander.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rigcommander.cpp b/rigcommander.cpp index 15d181f..143f819 100644 --- a/rigcommander.cpp +++ b/rigcommander.cpp @@ -2834,7 +2834,7 @@ void rigCommander::determineRigCaps() rigCaps.bands.push_back(bandGen); break; default: - rigCaps.modelName = QString("IC-RigID: 0x%1").arg(rigCaps.modelID, 2, 16); + rigCaps.modelName = QString("IC-0x%1").arg(rigCaps.modelID, 2, 16); rigCaps.hasSpectrum = false; rigCaps.spectSeqMax = 0; rigCaps.spectAmpMax = 0;