From: c vw <dl1ycf@darc.de>
Date: Tue, 9 Mar 2021 17:45:05 +0000 (+0100)
Subject: typo
X-Git-Url: https://git.rkrishnan.org/Site/Content/module-simplejson-index.html?a=commitdiff_plain;h=d05ba8ba425e48f0f82e262397da01a97a7332b8;p=pihpsdr.git

typo
---

diff --git a/receiver.c b/receiver.c
index 6774dfc..932329e 100644
--- a/receiver.c
+++ b/receiver.c
@@ -168,7 +168,7 @@ gboolean receiver_motion_notify_event(GtkWidget *widget, GdkEventMotion *event,
     //
     int moved=x-last_x;
     if (moved) {
-      if (has_moved || move < -1 || move > 1) {
+      if (has_moved || moved < -1 || moved > 1) {
         vfo_move((long long)((float)moved*rx->hz_per_pixel),FALSE);
         last_x=x;
         has_moved=TRUE;