mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-07-26 12:04:15 -04:00
Don't overwrite frequency, station or, macro models whenleaving the
configuration dialog unless they have changed. Fix a bug I had introduced into the free text message fields so they don't get overwritten by message generation. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3981 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
@@ -1959,7 +1959,6 @@ void MainWindow::genStdMsgs(QString rpt) //genStdMsgs()
|
||||
msgtype(t, ui->tx6);
|
||||
}
|
||||
ui->genMsg->setText("");
|
||||
ui->freeTextMsg->setCurrentText("");
|
||||
return;
|
||||
}
|
||||
QString hisBase=baseCall(hisCall);
|
||||
@@ -2209,7 +2208,6 @@ void MainWindow::on_tx4_editingFinished() //tx4 edited
|
||||
void MainWindow::on_tx5_currentTextChanged (QString const& text) //tx5 edited
|
||||
{
|
||||
msgtype(text, ui->tx5->lineEdit ());
|
||||
msgtype(text, ui->freeTextMsg->lineEdit ());
|
||||
}
|
||||
|
||||
void MainWindow::on_tx6_editingFinished() //tx6 edited
|
||||
@@ -2608,7 +2606,6 @@ void MainWindow::on_rbFreeText_toggled(bool checked)
|
||||
void MainWindow::on_freeTextMsg_currentTextChanged (QString const& text)
|
||||
{
|
||||
msgtype(text, ui->freeTextMsg->lineEdit ());
|
||||
msgtype(text, ui->tx5->lineEdit ());
|
||||
}
|
||||
|
||||
void MainWindow::on_rptSpinBox_valueChanged(int n)
|
||||
|
||||
Reference in New Issue
Block a user