mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-07-12 03:55:22 +02:00
Fixed VFO bandwidth not adjustable after disabling new radio module
This commit is contained in:
@ -115,6 +115,7 @@ public:
|
|||||||
enabled = true;
|
enabled = true;
|
||||||
if (!vfo) {
|
if (!vfo) {
|
||||||
vfo = sigpath::vfoManager.createVFO(name, ImGui::WaterfallVFO::REF_CENTER, 0, 200000, 200000, 50000, 200000, false);
|
vfo = sigpath::vfoManager.createVFO(name, ImGui::WaterfallVFO::REF_CENTER, 0, 200000, 200000, 50000, 200000, false);
|
||||||
|
vfo->wtfVFO->onUserChangedBandwidth.bindHandler(&onUserChangedBandwidthHandler);
|
||||||
}
|
}
|
||||||
selectDemodByID((DemodID)selectedDemodID);
|
selectDemodByID((DemodID)selectedDemodID);
|
||||||
}
|
}
|
||||||
@ -436,7 +437,7 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
EventHandler<double> onUserChangedBandwidthHandler;
|
EventHandler<double> onUserChangedBandwidthHandler;
|
||||||
VFOManager::VFO* vfo;
|
VFOManager::VFO* vfo = NULL;
|
||||||
dsp::Squelch squelch;
|
dsp::Squelch squelch;
|
||||||
|
|
||||||
dsp::filter_window::BlackmanWindow win;
|
dsp::filter_window::BlackmanWindow win;
|
||||||
|
Reference in New Issue
Block a user