mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 21:58:38 -05:00
Correct the restoration of WideGraph, EchoGraph, nd FastGraph after minimization.
This commit is contained in:
parent
dbc42f7a61
commit
c7ac74b2dc
@ -2415,17 +2415,17 @@ void MainWindow::on_actionLocal_User_Guide_triggered()
|
|||||||
|
|
||||||
void MainWindow::on_actionWide_Waterfall_triggered() //Display Waterfalls
|
void MainWindow::on_actionWide_Waterfall_triggered() //Display Waterfalls
|
||||||
{
|
{
|
||||||
m_wideGraph->show();
|
m_wideGraph->showNormal();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionEcho_Graph_triggered()
|
void MainWindow::on_actionEcho_Graph_triggered()
|
||||||
{
|
{
|
||||||
m_echoGraph->show();
|
m_echoGraph->showNormal();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionFast_Graph_triggered()
|
void MainWindow::on_actionFast_Graph_triggered()
|
||||||
{
|
{
|
||||||
m_fastGraph->show();
|
m_fastGraph->showNormal();
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionSolve_FreqCal_triggered()
|
void MainWindow::on_actionSolve_FreqCal_triggered()
|
||||||
@ -5981,7 +5981,7 @@ void MainWindow::on_actionJT9_triggered()
|
|||||||
if(m_bFast9) {
|
if(m_bFast9) {
|
||||||
m_TRperiod = ui->sbTR->value ();
|
m_TRperiod = ui->sbTR->value ();
|
||||||
m_wideGraph->hide();
|
m_wideGraph->hide();
|
||||||
m_fastGraph->show();
|
m_fastGraph->showNormal();
|
||||||
ui->TxFreqSpinBox->setValue(700);
|
ui->TxFreqSpinBox->setValue(700);
|
||||||
ui->RxFreqSpinBox->setValue(700);
|
ui->RxFreqSpinBox->setValue(700);
|
||||||
ui->decodedTextLabel->setText("UTC dB T Freq " + tr ("Message"));
|
ui->decodedTextLabel->setText("UTC dB T Freq " + tr ("Message"));
|
||||||
@ -6144,7 +6144,7 @@ void MainWindow::on_actionISCAT_triggered()
|
|||||||
m_wideGraph->setMode(m_mode);
|
m_wideGraph->setMode(m_mode);
|
||||||
m_wideGraph->setModeTx(m_modeTx);
|
m_wideGraph->setModeTx(m_modeTx);
|
||||||
statusChanged();
|
statusChanged();
|
||||||
if(!m_fastGraph->isVisible()) m_fastGraph->show();
|
if(!m_fastGraph->isVisible()) m_fastGraph->showNormal();
|
||||||
if(m_wideGraph->isVisible()) m_wideGraph->hide();
|
if(m_wideGraph->isVisible()) m_wideGraph->hide();
|
||||||
setup_status_bar (true);
|
setup_status_bar (true);
|
||||||
ui->cbShMsgs->setChecked(false);
|
ui->cbShMsgs->setChecked(false);
|
||||||
@ -6197,7 +6197,7 @@ void MainWindow::on_actionMSK144_triggered()
|
|||||||
m_bFast9=false;
|
m_bFast9=false;
|
||||||
m_TRperiod = ui->sbTR->value ();
|
m_TRperiod = ui->sbTR->value ();
|
||||||
m_wideGraph->hide();
|
m_wideGraph->hide();
|
||||||
m_fastGraph->show();
|
m_fastGraph->showNormal();
|
||||||
ui->TxFreqSpinBox->setValue(1500);
|
ui->TxFreqSpinBox->setValue(1500);
|
||||||
ui->RxFreqSpinBox->setValue(1500);
|
ui->RxFreqSpinBox->setValue(1500);
|
||||||
ui->RxFreqSpinBox->setMinimum(1400);
|
ui->RxFreqSpinBox->setMinimum(1400);
|
||||||
@ -6402,9 +6402,9 @@ void MainWindow::fast_config(bool b)
|
|||||||
ui->sbTR->setVisible(b);
|
ui->sbTR->setVisible(b);
|
||||||
if(b and (m_bFast9 or m_mode=="MSK144" or m_mode=="ISCAT")) {
|
if(b and (m_bFast9 or m_mode=="MSK144" or m_mode=="ISCAT")) {
|
||||||
m_wideGraph->hide();
|
m_wideGraph->hide();
|
||||||
m_fastGraph->show();
|
m_fastGraph->showNormal();
|
||||||
} else {
|
} else {
|
||||||
m_wideGraph->show();
|
m_wideGraph->showNormal();
|
||||||
m_fastGraph->hide();
|
m_fastGraph->hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user