mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-05 14:47:54 -04:00
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
This commit is contained in:
parent
ba8a771001
commit
d9d3e54586
@ -381,6 +381,9 @@ void WideGraph::updateFreqLabel()
|
|||||||
double rxFreq=ui->widePlot->rxFreq();
|
double rxFreq=ui->widePlot->rxFreq();
|
||||||
double txFreq=ui->widePlot->txFreq();
|
double txFreq=ui->widePlot->txFreq();
|
||||||
QString t;
|
QString t;
|
||||||
t.sprintf("Rx: %10.6f\nTx: %10.6f",rxFreq,txFreq);
|
t.sprintf("Rx: %10.6f",rxFreq);
|
||||||
ui->labFreq->setText(t);
|
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);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user