mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Allox Fox to transmit free-text or other single messages from Tab 1.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8350 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
1dd9357b44
commit
8d41ba2ce7
@ -3353,7 +3353,7 @@ void MainWindow::guiUpdate()
|
||||
}
|
||||
}
|
||||
if(m_modeTx=="FT8") {
|
||||
if(m_config.bFox()) {
|
||||
if(m_config.bFox() and ui->tabWidget->currentIndex()==2) {
|
||||
foxTxSequencer();
|
||||
} else {
|
||||
m_i3bit=0;
|
||||
@ -3546,7 +3546,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);
|
||||
} else {
|
||||
sprintf(s,"Tx: %s",msgsent);
|
||||
}
|
||||
m_nsendingsh=0;
|
||||
if(s[4]==64) m_nsendingsh=1;
|
||||
if(m_nsendingsh==1 or m_currentMessageType==7) {
|
||||
|
Loading…
Reference in New Issue
Block a user