Update wfmain.cpp

creator-widgets
Phil Taylor 2024-01-29 16:06:31 +00:00
rodzic 3ecc0080e6
commit f5ee932500
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -981,7 +981,7 @@ void wfmain::configureVFOs()
for(uchar i=0;i<rigCaps.numVFO;i++)
{
qCritical(logSystem()) << "Creating VFO" << i;
vfos.append(new spectrumScope(this));
vfos.append(new spectrumScope());
vfos.last()->setUnderlayMode(prefs.underlayMode);
vfos.last()->wfAntiAliased(prefs.wfAntiAlias);
vfos.last()->wfInterpolate(prefs.wfInterpolate);
@ -998,7 +998,7 @@ void wfmain::configureVFOs()
// Hide any secondary VFOs until we need them!
if (i>0){
vfos.last()->setVisible(false);
// vfos.last()->setVisible(false);
}
ui->vfoLayout->addWidget(vfos.last());