mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-06-24 22:25:17 -04:00
Double-click on call now sets proper Tx mode.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@7541 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
4acd0c8795
commit
edf39d60b8
@ -483,7 +483,7 @@ void MainWindow::readSettings()
|
|||||||
if(m_modeQRA64==4) ui->actionQRA64D->setChecked(true);
|
if(m_modeQRA64==4) ui->actionQRA64D->setChecked(true);
|
||||||
if(m_modeQRA64==5) ui->actionQRA64E->setChecked(true);
|
if(m_modeQRA64==5) ui->actionQRA64E->setChecked(true);
|
||||||
if(m_modeTx=="JT65") ui->pbTxMode->setText("Tx JT65 #");
|
if(m_modeTx=="JT65") ui->pbTxMode->setText("Tx JT65 #");
|
||||||
if(m_modeTx=="QRA64") ui->pbTxMode->setText("Tx QRA64 #");
|
if(m_modeTx=="QRA64") ui->pbTxMode->setText("Tx QRA64 $");
|
||||||
|
|
||||||
ui->actionNone->setChecked(settings.value("SaveNone",true).toBool());
|
ui->actionNone->setChecked(settings.value("SaveNone",true).toBool());
|
||||||
ui->actionSave_all->setChecked(settings.value("SaveAll",false).toBool());
|
ui->actionSave_all->setChecked(settings.value("SaveAll",false).toBool());
|
||||||
@ -1730,6 +1730,8 @@ void MainWindow::doubleClickOnCall(QString hiscall, bool ctrl)
|
|||||||
int n = 60*t2.mid(14,2).toInt() + t2.mid(16,2).toInt();
|
int n = 60*t2.mid(14,2).toInt() + t2.mid(16,2).toInt();
|
||||||
m_txFirst = ((n%2) == 1);
|
m_txFirst = ((n%2) == 1);
|
||||||
ui->txFirstCheckBox->setChecked(m_txFirst);
|
ui->txFirstCheckBox->setChecked(m_txFirst);
|
||||||
|
if((t2.indexOf("#")>0) and m_modeTx!="JT65") on_pbTxMode_clicked();
|
||||||
|
if((t2.indexOf("$")>0) and m_modeTx!="QRA64") on_pbTxMode_clicked();
|
||||||
QString rpt="";
|
QString rpt="";
|
||||||
if(ctrl or m_modeTx=="QRA64") rpt=t2.mid(25,3);
|
if(ctrl or m_modeTx=="QRA64") rpt=t2.mid(25,3);
|
||||||
lookup();
|
lookup();
|
||||||
|
@ -332,6 +332,9 @@ p, li { white-space: pre-wrap; }
|
|||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
@ -357,6 +360,9 @@ p, li { white-space: pre-wrap; }
|
|||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignCenter</set>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user