mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05: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 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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user