mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-30 06:17:49 +02:00
New optional detailed FFT system
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
|
||||
namespace displaymenu {
|
||||
bool showWaterfall;
|
||||
bool fastFFT = true;
|
||||
int colorMapId = 0;
|
||||
std::vector<std::string> colorMapNames;
|
||||
std::string colorMapNamesTxt = "";
|
||||
@ -55,5 +56,9 @@ namespace displaymenu {
|
||||
}
|
||||
ImGui::Text("Color map Author: %s", colorMapAuthor.c_str());
|
||||
}
|
||||
|
||||
if (ImGui::Checkbox("Fast FFT", &fastFFT)) {
|
||||
gui::waterfall.setFastFFT(fastFFT);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user