]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
typo
authorc vw <dl1ycf@darc.de>
Tue, 9 Mar 2021 17:45:05 +0000 (18:45 +0100)
committerc vw <dl1ycf@darc.de>
Tue, 9 Mar 2021 17:45:05 +0000 (18:45 +0100)
receiver.c

index 6774dfc10a841408ec7baaaac21c62771adeed9f..932329eb83463074b1d4b62bcc96122bb67e278d 100644 (file)
@@ -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;