Fix issue with main window height growing on restart

This commit is contained in:
Bill Somerville 2020-11-17 00:55:24 +00:00
parent f10d6fb712
commit a1808c99f7
No known key found for this signature in database
GPG Key ID: D864B06D1E81618F
2 changed files with 689 additions and 625 deletions

View File

@ -5920,7 +5920,11 @@ void MainWindow::displayWidgets(qint64 n)
if(i==31) ui->cbRxAll->setVisible(b); if(i==31) ui->cbRxAll->setVisible(b);
if(i==32) ui->cbCQonly->setVisible(b); if(i==32) ui->cbCQonly->setVisible(b);
if(i==33) ui->sbTR_FST4W->setVisible(b); if(i==33) ui->sbTR_FST4W->setVisible(b);
if(i==34) ui->sbF_Low->setVisible(b); if (34 == i) // adjust the stacked widget
{
ui->opt_controls_stack->setCurrentIndex (b ? 1 : 0);
ui->sbF_Low->setVisible(b);
}
if(i==35) ui->sbF_High->setVisible(b); if(i==35) ui->sbF_High->setVisible(b);
j=j>>1; j=j>>1;
} }

File diff suppressed because it is too large Load Diff