mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
Clean up what's displayed in yellow "Tx:" label for Fox transmissions.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8472 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
6504085749
commit
ff0c97e2f1
@ -3610,7 +3610,11 @@ void MainWindow::guiUpdate()
|
||||
if(m_transmitting) {
|
||||
char s[37];
|
||||
if(m_config.bFox() and ui->tabWidget->currentIndex()==2) {
|
||||
sprintf(s,"TX: %d Slots",m_Nslots);
|
||||
if(m_Nslots==1) {
|
||||
sprintf(s,"Tx: 1 slot");
|
||||
} else {
|
||||
sprintf(s,"Tx: %d Slots",m_Nslots);
|
||||
}
|
||||
} else {
|
||||
sprintf(s,"Tx: %s",msgsent);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user