pull/1385/head
AlexandreRouma 2024-03-31 23:00:50 +02:00
rodzic e1c48e9a1f
commit a2054ad780
1 zmienionych plików z 12 dodań i 12 usunięć

Wyświetl plik

@ -576,6 +576,8 @@ void MainWindow::draw() {
// Handle scrollwheel
int wheel = ImGui::GetIO().MouseWheel;
if (wheel != 0 && (gui::waterfall.mouseInFFT || gui::waterfall.mouseInWaterfall)) {
double nfreq;
if (vfo != NULL) {
// Select factor depending on modifier keys
double interval;
if (ImGui::IsKeyDown(ImGuiKey_LeftShift)) {
@ -588,8 +590,6 @@ void MainWindow::draw() {
interval = vfo->snapInterval;
}
double nfreq;
if (vfo != NULL) {
nfreq = gui::waterfall.getCenterFrequency() + vfo->generalOffset + (interval * wheel);
nfreq = roundl(nfreq / interval) * interval;
}