From d9d3e5458618e6480fa3ac86473652621e45a32a Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 10 Nov 2013 16:16:25 +0000 Subject: [PATCH] Tweak to freq display on waterfall. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@3600 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- widegraph.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/widegraph.cpp b/widegraph.cpp index 03cec1be9..f71d1ef6b 100644 --- a/widegraph.cpp +++ b/widegraph.cpp @@ -381,6 +381,9 @@ void WideGraph::updateFreqLabel() double rxFreq=ui->widePlot->rxFreq(); double txFreq=ui->widePlot->txFreq(); QString t; - t.sprintf("Rx: %10.6f\nTx: %10.6f",rxFreq,txFreq); - ui->labFreq->setText(t); + t.sprintf("Rx: %10.6f",rxFreq); + QString t1=t.mid(0,12) + "." + t.mid(12,3); + t.sprintf("Tx: %10.6f",txFreq); + QString t2=t.mid(0,12) + "." + t.mid(12,3); + ui->labFreq->setText(t1 + "\n" + t2); }