mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 13:48:42 -05:00
Don't allow a blank message to be auto-sent by Hound.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8519 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
6b28068c4d
commit
c55db678a2
@ -2980,7 +2980,7 @@ void MainWindow::readFromStdout() //readFromStdout
|
|||||||
if(decodedtext.string().contains("/")) w.append(" +00"); //Add a dummy report
|
if(decodedtext.string().contains("/")) w.append(" +00"); //Add a dummy report
|
||||||
if(w.size()>=3) {
|
if(w.size()>=3) {
|
||||||
QString foxCall=w.at(1);
|
QString foxCall=w.at(1);
|
||||||
if(w.at(0)==m_config.my_callsign()) {
|
if(w.at(0)==m_config.my_callsign() and ui->tx3->text().length()>0) {
|
||||||
if(w.at(2)=="RR73") {
|
if(w.at(2)=="RR73") {
|
||||||
auto_tx_mode(false);
|
auto_tx_mode(false);
|
||||||
on_logQSOButton_clicked();
|
on_logQSOButton_clicked();
|
||||||
@ -3680,7 +3680,6 @@ void MainWindow::guiUpdate()
|
|||||||
|
|
||||||
void MainWindow::startTx2()
|
void MainWindow::startTx2()
|
||||||
{
|
{
|
||||||
if(m_currentMessage.trimmed().length()==0) return; //Don't transmit blank messages.
|
|
||||||
if (!m_modulator->isActive ()) { // TODO - not thread safe
|
if (!m_modulator->isActive ()) { // TODO - not thread safe
|
||||||
double fSpread=0.0;
|
double fSpread=0.0;
|
||||||
double snr=99.0;
|
double snr=99.0;
|
||||||
|
Loading…
Reference in New Issue
Block a user