]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fixed waterfall click frequency when in CW mode
authorJohn Melton - G0ORX/N6LYT <john.d.melton@googlemail.com>
Wed, 20 Jul 2016 05:55:27 +0000 (05:55 +0000)
committerJohn Melton - G0ORX/N6LYT <john.d.melton@googlemail.com>
Wed, 20 Jul 2016 05:55:27 +0000 (05:55 +0000)
pihpsdr
release/pihpsdr.tar
release/pihpsdr/pihpsdr
waterfall.c

diff --git a/pihpsdr b/pihpsdr
index 057062909d76da7c64201d68acf322dc2deb4664..8e9c06f8899a04064a01b44601bbca956f82c214 100755 (executable)
Binary files a/pihpsdr and b/pihpsdr differ
index 97fb3ce9a916dfd31f7471373bc8850220501fdd..3d84867ddeb2672c25f14a948343370cd7717c07 100644 (file)
Binary files a/release/pihpsdr.tar and b/release/pihpsdr.tar differ
index 00dab3721bc7b6df5c56640c52ad25563c31e417..8e9c06f8899a04064a01b44601bbca956f82c214 100755 (executable)
Binary files a/release/pihpsdr/pihpsdr and b/release/pihpsdr/pihpsdr differ
index 1490df67554a4352105fb9b78db64e8cae3ffa21..c52e070c42277599a591a380e695dd64a2b7171e 100644 (file)
@@ -109,7 +109,7 @@ waterfall_button_release_event_cb (GtkWidget      *widget,
       vfo_move((int)((float)(x-last_x)*hz_per_pixel));
     } else {
       // move to this frequency
-      vfo_move((int)((float)(x-(display_width/2))*hz_per_pixel));
+      vfo_move_to((int)((float)(x-(display_width/2))*hz_per_pixel));
     }
     last_x=x;
     pressed=FALSE;