diff --git a/Configuration.ui b/Configuration.ui index 42ed287..a38f8e3 100644 --- a/Configuration.ui +++ b/Configuration.ui @@ -6,8 +6,8 @@ 0 0 - 530 - 550 + 692 + 701 @@ -1888,6 +1888,13 @@ QListView::item:hover { + + + + Op Call: + + + @@ -1904,34 +1911,31 @@ QListView::item:hover { - - - - Qt::Horizontal + + + + false - - - 40 - 20 - + + false + + + Check this option to force the clearing of the DX Call +and DX Grid fields when a 73 or free text message is sent. - - - - - Op Call: + Clear &DX call and grid after logging - + <html><head/><body><p>The callsign of the operator, if different from the station callsign.</p></body></html> - + Some logging programs will not accept JT-65 or JT9 as a recognized mode. @@ -1941,11 +1945,14 @@ QListView::item:hover { - + false + + false + Some logging programs will not accept the type of reports saved by this program. @@ -1957,19 +1964,18 @@ comments field. - - - - false + + + + Qt::Horizontal - - Check this option to force the clearing of the DX Call -and DX Grid fields when a 73 or free text message is sent. + + + 40 + 20 + - - Clear &DX call and grid after logging - - + @@ -2797,7 +2803,7 @@ Right click for insert and delete options. - true + false <html><head/><body><p>Generate Tx audio with four times the normal tone spacing. Intended for special LF/MF transmitters that use a divide-by-4 before generating RF.</p></body></html> @@ -3027,9 +3033,6 @@ soundcard changes delete_macro_push_button macros_list_view prompt_to_log_check_box - log_as_RTTY_check_box - report_in_comments_check_box - clear_DX_check_box psk_reporter_check_box udp_server_line_edit udp_server_port_spin_box @@ -3122,12 +3125,12 @@ soundcard changes - - - - - + + + + + diff --git a/logqso.cpp b/logqso.cpp index 980cdce..ac96be3 100644 --- a/logqso.cpp +++ b/logqso.cpp @@ -75,8 +75,9 @@ void LogQSO::initLogQSO(QString const& hisCall, QString const& hisGrid, QString if(rptRcvd!="") t+=" Rcvd: " + rptRcvd; ui->comments->setText(t); } - if(noSuffix and mode.mid(0,3)=="JT9") mode="JT9"; - if(toRTTY and mode.mid(0,3)=="JT9") mode="RTTY"; + //if(noSuffix and mode.mid(0,3)=="JT9") mode="JT9"; + //if(toRTTY and mode.mid(0,3)=="JT9") mode="RTTY"; + if(toRTTY) mode="RTTY"; ui->mode->setText(mode); ui->sent->setText(rptSent); ui->rcvd->setText(rptRcvd); diff --git a/mainwindow.cpp b/mainwindow.cpp index 656f177..5c65698 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6264,7 +6264,7 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button if (dateTimeQSOOff < m_dateTimeQSOOn) dateTimeQSOOff = m_dateTimeQSOOn; QString grid=m_hisGrid; if(grid=="....") grid=""; - m_logDlg->initLogQSO (m_hisCall, grid, m_modeTx, m_rptSent, m_rptRcvd, + m_logDlg->initLogQSO (m_hisCall, grid, m_modeTx == "FT8" ? "FT8CALL" : m_modeTx, m_rptSent, m_rptRcvd, m_dateTimeQSOOn, dateTimeQSOOff, m_freqNominal + ui->TxFreqSpinBox->value(), m_config.my_callsign(), m_config.my_grid(), m_noSuffix, m_config.log_as_RTTY(), m_config.report_in_comments(),