From 7b48a57306a6905f6513c39d1e5bee97f745bd1a Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 25 Jul 2017 16:51:34 +0000 Subject: [PATCH] Ensure JT9 lowest decode frequency spin box is disabled when not available git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7942 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- widegraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widegraph.cpp b/widegraph.cpp index d6295a84c..d182aeeb3 100644 --- a/widegraph.cpp +++ b/widegraph.cpp @@ -360,7 +360,7 @@ void WideGraph::setRxBand (QString const& band) else { ui->fSplitSpinBox->setValue (m_fMinPerBand.value (band, 2500).toUInt ()); - ui->fSplitSpinBox->setEnabled (true); + ui->fSplitSpinBox->setEnabled (m_mode=="JT9+JT65"); } ui->widePlot->setRxBand(band); setRxRange ();