pull/2/head
Ryzerth 2020-07-19 22:00:01 +02:00
rodzic 94074bea98
commit 6bfe15b14e
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -1,4 +1,5 @@
# SDR++, The bloat-free SDR software.
![Screenshot](https://i.imgur.com/LjcjyNC.png)
SDR++ is a cross-platform and open source SDR software with the aim of being bloat free and simple to use.
## Current Features
@ -25,6 +26,7 @@ SDR++ is a cross-platform and open source SDR software with the aim of being blo
* other small customisation options
* Save waterfall and demod settings between sessions
* "Hide sidebar" option
* Input filter bandwidth option
## Known issues (please check before reporting)
* Random crashes (yikes)

Wyświetl plik

@ -402,12 +402,12 @@ void drawWindow() {
ImGui::NewLine();
ImGui::Text("Max");
ImGui::VSliderFloat("##_8_", ImVec2(20.0f, 150.0f), &fftMax, -100.0f, 0.0f, "");
ImGui::VSliderFloat("##_8_", ImVec2(20.0f, 150.0f), &fftMax, 0.0f, -100.0f, "");
ImGui::NewLine();
ImGui::Text("Min");
ImGui::VSliderFloat("##_9_", ImVec2(20.0f, 150.0f), &fftMin, -100.0f, 0.0f, "");
ImGui::VSliderFloat("##_9_", ImVec2(20.0f, 150.0f), &fftMin, 0.0f, -100.0f, "");
if (bw != lastBW) {
lastBW = bw;