mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	Always attempt to decode when Continuous Waterfall is enabled.
This commit is contained in:
		
							parent
							
								
									2f1082e973
								
							
						
					
					
						commit
						e040c926b9
					
				@ -800,8 +800,8 @@ void MainWindow::decode()                                       //decode()
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
//Don't attempt to decode if decoder is already busy, or if we transmitted for 10 s or more.
 | 
					//Don't attempt to decode if decoder is already busy, or if we transmitted for 10 s or more.
 | 
				
			||||||
  if(m_decoderBusy) return;
 | 
					  if(m_decoderBusy) return;
 | 
				
			||||||
  if(m_WSJTX_TRperiod==60 and m_nTransmitted>10) return;
 | 
					  if(m_WSJTX_TRperiod==60 and m_nTransmitted>10 and !ui->continuous_waterfall->isChecked()) return;
 | 
				
			||||||
  if(m_WSJTX_TRperiod==30 and m_nTransmitted>35) return;
 | 
					  if(m_WSJTX_TRperiod==30 and m_nTransmitted>35 and !ui->continuous_waterfall->isChecked()) return;
 | 
				
			||||||
  QString fname="           ";
 | 
					  QString fname="           ";
 | 
				
			||||||
  ui->DecodeButton->setStyleSheet(m_pbdecoding_style1);
 | 
					  ui->DecodeButton->setStyleSheet(m_pbdecoding_style1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user